aboutsummaryrefslogtreecommitdiffstats
path: root/themes/smartpocket/admin/upgrade.inc.php
blob: 53e4e1aae3a9d930edced6c465a060cdb1995f6f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?php

if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!');

global $prefixeTable, $conf;

if (!isset($conf['smartpocket']))
{
  $config = array(
    'loop' => true,//true - false
    'autohide' => 5000,//5000 - 0
  );

  conf_update_param('smartpocket', $config, true);
}
elseif (count(safe_unserialize($conf['smartpocket'])) != 2)
{
  $conff = safe_unserialize($conf['smartpocket']);
  $config = array(
    'loop' => (!empty($conff['loop'])) ? $conff['loop'] :true,
    'autohide' => (!empty($conff['autohide'])) ? $conff['autohide'] :5000,
  );
  conf_update_param('smartpocket', $config, true);
}
?>