mirror of
https://github.com/Piwigo/piwigo-elegant.git
synced 2026-08-12 03:43:06 +02:00
bug 3174 fixed: avoid using load_conf_from_db, use 3rd parameter updateGlobal instead
git-svn-id: http://piwigo.org/svn/trunk@30460 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
+2
-3
@@ -14,8 +14,7 @@ if(isset($_POST['submit_elegant']))
|
||||
$config_send['p_pict_descr']=(isset($_POST['p_pict_descr']) and !empty($_POST['p_pict_descr'])) ? $_POST['p_pict_descr'] : 'on';
|
||||
$config_send['p_pict_comment']=(isset($_POST['p_pict_comment']) and !empty($_POST['p_pict_comment'])) ? $_POST['p_pict_comment'] : 'off';
|
||||
|
||||
$conf['elegant'] = serialize($config_send);
|
||||
conf_update_param('elegant', pwg_db_real_escape_string($conf['elegant']));
|
||||
conf_update_param('elegant', $config_send, true);
|
||||
|
||||
array_push($page['infos'], l10n('Information data registered in database'));
|
||||
}
|
||||
@@ -23,7 +22,7 @@ if(isset($_POST['submit_elegant']))
|
||||
$template->set_filenames(array(
|
||||
'theme_admin_content' => dirname(__FILE__) . '/admin.tpl'));
|
||||
|
||||
$template->assign('options', unserialize($conf['elegant']));
|
||||
$template->assign('options', safe_unserialize($conf['elegant']));
|
||||
|
||||
$template->assign_var_from_handle('ADMIN_CONTENT', 'theme_admin_content');
|
||||
|
||||
|
||||
Reference in New Issue
Block a user