mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-03-28 17:42:57 +01: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
28 lines
741 B
PHP
28 lines
741 B
PHP
<?php
|
|
|
|
// Need upgrade?
|
|
global $conf;
|
|
include(PHPWG_THEMES_PATH.'smartpocket/admin/upgrade.inc.php');
|
|
|
|
load_language('theme.lang', PHPWG_THEMES_PATH.'smartpocket/');
|
|
|
|
$config_send= array();
|
|
|
|
if(isset($_POST['submit_smartpocket']))
|
|
{
|
|
$config_send['loop'] = isset($_POST['loop']);
|
|
$config_send['autohide'] = (isset($_POST['autohide']) ? 5000 : 0);
|
|
|
|
conf_update_param('smartpocket', $config_send, true);
|
|
|
|
array_push($page['infos'], l10n('Information data registered in database'));
|
|
}
|
|
|
|
$template->set_filenames(array(
|
|
'theme_admin_content' => dirname(__FILE__) . '/admin.tpl'));
|
|
|
|
$template->assign('options', safe_unserialize($conf['smartpocket']));
|
|
|
|
$template->assign_var_from_handle('ADMIN_CONTENT', 'theme_admin_content');
|
|
|
|
?>
|