From b12f6314c43aa013e80e10414cf41eac988c26fa Mon Sep 17 00:00:00 2001 From: plegall Date: Wed, 12 Nov 2014 13:34:53 +0000 Subject: fixes #288 on branch 2.7 (cherry-pick of commit 40256be64a61f3f8fda734a292d47c0ba4d54c1c from master) 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 --- themes/smartpocket/admin/admin.inc.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'themes/smartpocket/admin/admin.inc.php') diff --git a/themes/smartpocket/admin/admin.inc.php b/themes/smartpocket/admin/admin.inc.php index a5a9300c4..6b2069837 100644 --- a/themes/smartpocket/admin/admin.inc.php +++ b/themes/smartpocket/admin/admin.inc.php @@ -13,8 +13,7 @@ if(isset($_POST['submit_smartpocket'])) $config_send['loop'] = isset($_POST['loop']); $config_send['autohide'] = (isset($_POST['autohide']) ? 5000 : 0); - $conf['smartpocket'] = serialize($config_send); - conf_update_param('smartpocket', pwg_db_real_escape_string($conf['smartpocket'])); + conf_update_param('smartpocket', $config_send, true); array_push($page['infos'], l10n('Information data registered in database')); } @@ -22,7 +21,7 @@ if(isset($_POST['submit_smartpocket'])) $template->set_filenames(array( 'theme_admin_content' => dirname(__FILE__) . '/admin.tpl')); -$template->assign('options', unserialize($conf['smartpocket'])); +$template->assign('options', safe_unserialize($conf['smartpocket'])); $template->assign_var_from_handle('ADMIN_CONTENT', 'theme_admin_content'); -- cgit v1.2.3