summaryrefslogtreecommitdiff
path: root/installer/libraries
diff options
context:
space:
mode:
authorBharat Mediratta <bharat@menalto.com>2009-01-18 23:55:35 +0000
committerBharat Mediratta <bharat@menalto.com>2009-01-18 23:55:35 +0000
commit248ce3ebce0d5a38271b7b8a767a7ee12bec4329 (patch)
tree8634182f2abb051339182a09baafc4c7f8cd1f56 /installer/libraries
parent1cc7b3f4be8d13a24218be1b05454f43cfc0d444 (diff)
Remove access rights check; fix a bug in determining the path to var/database.php
Diffstat (limited to 'installer/libraries')
-rw-r--r--installer/libraries/Install_Mysqli_Driver.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/installer/libraries/Install_Mysqli_Driver.php b/installer/libraries/Install_Mysqli_Driver.php
index 257d8ea6..9eaaf1fc 100644
--- a/installer/libraries/Install_Mysqli_Driver.php
+++ b/installer/libraries/Install_Mysqli_Driver.php
@@ -56,6 +56,7 @@ class Install_Mysqli_Driver {
" FROM `information_schema`.`schema_privileges`" .
" WHERE `GRANTEE` = '\\'{$this->_user}\\'@\\'{$this->_server}\\''" .
" AND `TABLE_SCHEMA` = '$dbname';";
+ print $select;
$privileges = $this->_mysqli->query($select);
$permissions = array();
if ($privileges) {