diff options
author | nikrou <nikrou@piwigo.org> | 2009-11-20 14:55:32 +0000 |
---|---|---|
committer | nikrou <nikrou@piwigo.org> | 2009-11-20 14:55:32 +0000 |
commit | 8c17d369fadc03d649213f0fbbad625ab285a13a (patch) | |
tree | 2e3720c8c6636c2f3d363b4fc80c4450b507d27c | |
parent | 924dd262ec3778277cf1efedee92fa5dd4fb2d32 (diff) |
Feature 1244 : bug fix
functions_mysql.inc.php must be loaded for install
git-svn-id: http://piwigo.org/svn/trunk@4326 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | include/dblayer/functions_mysql.inc.php | 1 | ||||
-rw-r--r-- | install.php | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/include/dblayer/functions_mysql.inc.php b/include/dblayer/functions_mysql.inc.php index 23d232675..78b97c712 100644 --- a/include/dblayer/functions_mysql.inc.php +++ b/include/dblayer/functions_mysql.inc.php @@ -375,7 +375,6 @@ INSERT INTO '.$table_name.' } $query .= ')'; } - Log::getInstance()->debug($query); pwg_query($query); } } diff --git a/install.php b/install.php index a031d1bca..ee824715f 100644 --- a/install.php +++ b/install.php @@ -182,6 +182,7 @@ if (@file_exists($config_file)) $prefixeTable = $table_prefix; include(PHPWG_ROOT_PATH . 'include/config_default.inc.php'); @include(PHPWG_ROOT_PATH. 'include/config_local.inc.php'); +include(PHPWG_ROOT_PATH . 'include/dblayer/functions_mysql.inc.php'); include(PHPWG_ROOT_PATH . 'include/constants.php'); include(PHPWG_ROOT_PATH . 'include/functions.inc.php'); include(PHPWG_ROOT_PATH . 'admin/include/functions.php'); |