source: extensions/stripped-slide/admin/upgrade.inc.php @ 12974

Last change on this file since 12974 was 12974, checked in by Zaphod, 12 years ago

version 1.1.0

File size: 439 bytes
Line 
1<?php
2
3if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!');
4
5global $prefixeTable, $conf;
6
7if (!isset($conf['stripped-slide']))
8{
9    $config = array(
10        'maxHeight'                                     => '600',
11      );
12     
13    $query = "
14INSERT INTO " . CONFIG_TABLE . " (param,value,comment)
15VALUES ('stripped-slide' , '".pwg_db_real_escape_string(serialize($config))."' , 'stripped-slide theme parameters');";
16
17    pwg_query($query);
18
19} 
20
21?>
Note: See TracBrowser for help on using the repository browser.