diff options
author | plegall <plg@piwigo.org> | 2005-08-17 21:03:46 +0000 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2005-08-17 21:03:46 +0000 |
commit | af3802982b31b13e6f94015bba484233c3b1a9e1 (patch) | |
tree | 3f61348e0d69123441cb08b5f9d43347bd677e11 | |
parent | 3cf427b4d6733f39b5a8f89bcfc8e5c1851adf18 (diff) |
- bug 138 fixed : guest and admin users were not created in the database
because include/config_default.inc.php was not included and that
USERS_TABLE constant depends on $conf['users_table'].
git-svn-id: http://piwigo.org/svn/trunk@819 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | install.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/install.php b/install.php index 2f5ea3f30..3a7a69ec3 100644 --- a/install.php +++ b/install.php @@ -186,6 +186,7 @@ if (@file_exists($config_file)) } $prefixeTable = $table_prefix; +include(PHPWG_ROOT_PATH . 'include/config_default.inc.php'); include(PHPWG_ROOT_PATH . 'include/constants.php'); include(PHPWG_ROOT_PATH . 'include/functions.inc.php'); include(PHPWG_ROOT_PATH . 'include/template.php'); |