From 4d56f351591cc6b48bcf4971d49a14a960c80650 Mon Sep 17 00:00:00 2001 From: rvelices Date: Tue, 4 Jan 2011 20:50:57 +0000 Subject: removed upgrade feed files 1-database to 60-database - they are old and unused in the current upgrade process git-svn-id: http://piwigo.org/svn/trunk@8470 68402e56-0260-453c-a942-63ccdbb3a9ee --- install/db/8-database.php | 83 ----------------------------------------------- 1 file changed, 83 deletions(-) delete mode 100644 install/db/8-database.php (limited to 'install/db/8-database.php') diff --git a/install/db/8-database.php b/install/db/8-database.php deleted file mode 100644 index 2b59bd51b..000000000 --- a/install/db/8-database.php +++ /dev/null @@ -1,83 +0,0 @@ - array('http://demo.phpwebgallery.net','URL given in RSS feed'), - 'rate' => array('true','Rating pictures feature is enabled') , - 'rate_anonymous' => array('true','Rating pictures feature is also enabled for visitors') - ); - - - -// +-Get real values from config file--------------------------------------+ - -$conf_save = $conf; -unset($conf); -@include(PHPWG_ROOT_PATH. 'local/config/config.inc.php'); -if ( isset($conf['gallery_url']) ) -{ - $params['gallery_url'][0] = $conf['gallery_url']; -} -if ( isset($conf['rate']) and is_bool($conf['rate']) ) -{ - $params['rate'][0] = $conf['rate'] ? 'true' : 'false'; -} -if ( isset($conf['rate_anonymous']) and is_bool($conf['rate_anonymous']) ) -{ - $params['rate_anonymous'][0] = $conf['rate_anonymous'] ? 'true' : 'false'; -} -$conf = $conf_save; - - - -// +-Do I already have them in DB ?----------------------------------------+ -$query = 'SELECT param FROM '.PREFIX_TABLE.'config'; -$result = pwg_query($query); -while ($row = pwg_db_fetch_assoc($result)) -{ - unset( $params[ $row['param'] ] ); -} - -// +-Perform the insert query----------------------------------------------+ -foreach ($params as $param_key => $param_values) -{ - $query = ' -INSERT INTO '.PREFIX_TABLE.'config (param,value,comment) VALUES (' . -"'$param_key','$param_values[0]','$param_values[1]');"; - pwg_query($query); -} - - -echo -"\n" -.'Table '.PREFIX_TABLE.'config upgraded' -."\n" -; -?> -- cgit v1.2.3