* @copyright 2001 - 2011 Ampache.org
* @license http://opensource.org/licenses/gpl-2.0 GPLv2
* @version PHP 5.2
* @link http://www.ampache.org/
* @since File available since Release 1.0
*/
?>
|
|
$value) {
if ($key == 'database_password' || $key == 'mysql_password') { $value = '*********'; }
if (is_array($value)) {
$string = '';
foreach ($value as $setting) {
$string .= $setting . '
';
}
$value = $string;
}
if (Preference::is_boolean($key)) {
$value = print_bool($value);
}
?>
|
|