merge -r1281:1283 from branch 1.6 to trunk (bug 228 fixed one more time, and

other little things)


git-svn-id: http://piwigo.org/svn/trunk@1284 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
plegall
2006-04-27 21:08:50 +00:00
parent f8d72e48d0
commit b0751afea2
6 changed files with 83 additions and 82 deletions
+32
View File
@@ -881,4 +881,36 @@ function get_available_upgrade_ids()
return $available_upgrade_ids;
}
/**
* Add configuration parameters from database to global $conf array
*
* @return void
*/
function load_conf_from_db()
{
global $conf;
$query = '
SELECT param,value
FROM '.CONFIG_TABLE.'
;';
$result = pwg_query($query);
if (mysql_num_rows($result) == 0)
{
die('No configuration data');
}
while ($row = mysql_fetch_array($result))
{
$conf[ $row['param'] ] = isset($row['value']) ? $row['value'] : '';
// 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'] ]);
}
}
}
?>