source: extensions/greydragon/admin/upgrade.inc.php

Last change on this file was 30484, checked in by SergeD, 9 years ago

version 1.0.14 - please refer to changelog for details

  • Property svn:eol-style set to native
File size: 433 bytes
Line 
1<?php
2
3if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!');
4
5global $prefixeTable, $conf;
6
7require_once( PHPWG_THEMES_PATH . 'greydragon/include/greydragon.class.php');
8
9if (!isset($conf['greydragon'])):
10  // Only need to ensure that there is a record in DB. Theme supports self initialization
11  $conf['greydragon'] = array();
12  conf_update_param('greydragon', $conf['greydragon'], true);
13else:
14  // Nothing to upgrade
15endif;
16?>
Note: See TracBrowser for help on using the repository browser.