diff options
author | plegall <plg@piwigo.org> | 2006-04-27 21:05:07 +0000 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2006-04-27 21:05:07 +0000 |
commit | 46900fece3a0ffb09a0a4fe58bae841a3978f79d (patch) | |
tree | 7922f66a8f62a2eacf810ac75ed90344094f26fb /include/common.inc.php | |
parent | 321d7d474c0c88316472e96d9740b2c4bbb6f6a6 (diff) |
bug 228 fixed one more time ;-): use boolean_to_string on
$conf['newuser_default_enabled_high'] during user infos creation. Useless
use of boolean_to_string on $conf['newcat_default_status'] was removed.
modification: loading configuration parameter from database was moved to a
dedicated function to be called from include/common.inc.php and from
install.php.
improvement: use of clean insert function during install.
bug fixed: during user information creation, support new status
webmaster/normal/guest instead of admin/guest.
bug fixed: during install, no need to insert obsolete mail_webmaster
configuration parameter.
git-svn-id: http://piwigo.org/svn/branches/branch-1_6@1282 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'include/common.inc.php')
-rw-r--r-- | include/common.inc.php | 27 |
1 files changed, 1 insertions, 26 deletions
diff --git a/include/common.inc.php b/include/common.inc.php index f66d1ee7f..8aeafb7bf 100644 --- a/include/common.inc.php +++ b/include/common.inc.php @@ -162,32 +162,7 @@ SELECT id // Setup gallery wide options, if this fails then we output a CRITICAL_ERROR // since basic gallery information is not available // -$query = ' -SELECT param,value - FROM '.CONFIG_TABLE.' -;'; -if (!($result = pwg_query($query))) -{ - die("Could not query config information"); -} - -while ( $row =mysql_fetch_array( $result ) ) -{ - if ( isset( $row['value'] ) ) - { - $conf[$row['param']] = $row['value']; - } - else - { - $conf[$row['param']] = ''; - } - // If the field is true or false, the variable is transformed into a - // boolean value. - if ( $conf[$row['param']] == 'true' or $conf[$row['param']] == 'false' ) - { - $conf[$row['param']] = get_boolean( $conf[$row['param']] ); - } -} +load_conf_from_db(); include(PHPWG_ROOT_PATH.'include/user.inc.php'); |