From 6228c0a07f1c89cf0e9ca86eff6ccbd4a05ca28e Mon Sep 17 00:00:00 2001 From: rub Date: Fri, 10 Mar 2006 22:53:29 +0000 Subject: Step 5 improvement issue 0000301: o upgrade_feed.php is showed only for administrator user This functionality is removed following mail of Pierrick LE GALL git-svn-id: http://piwigo.org/svn/trunk@1076 68402e56-0260-453c-a942-63ccdbb3a9ee --- include/common.inc.php | 50 +++++++++++++++++++++++++------------------------- 1 file changed, 25 insertions(+), 25 deletions(-) diff --git a/include/common.inc.php b/include/common.inc.php index 19af297e6..86c5c7a70 100644 --- a/include/common.inc.php +++ b/include/common.inc.php @@ -132,6 +132,31 @@ or die ( "Could not connect to database server" ); mysql_select_db( $cfgBase ) or die ( "Could not connect to database" ); +if ($conf['check_upgrade_feed']) +{ + // retrieve already applied upgrades + $query = ' +SELECT id + FROM '.UPGRADE_TABLE.' +;'; + $applied = array_from_query($query, 'id'); + + // retrieve existing upgrades + $existing = get_available_upgrade_ids(); + + // which upgrades need to be applied? + if (count(array_diff($existing, $applied)) > 0) + { + ob_start();// buffer output so that cookies work + echo + '

' + .'Some database upgrades are missing, ' + .'upgrade now' + .'

' + ; + } +} + // // Setup gallery wide options, if this fails then we output a CRITICAL_ERROR // since basic gallery information is not available @@ -165,31 +190,6 @@ while ( $row =mysql_fetch_array( $result ) ) include(PHPWG_ROOT_PATH.'include/user.inc.php'); -if (is_admin() and $conf['check_upgrade_feed']) -{ - // retrieve already applied upgrades - $query = ' -SELECT id - FROM '.UPGRADE_TABLE.' -;'; - $applied = array_from_query($query, 'id'); - - // retrieve existing upgrades - $existing = get_available_upgrade_ids(); - - // which upgrades need to be applied? - if (count(array_diff($existing, $applied)) > 0) - { - ob_start();// buffer output so that cookies work - echo - '

' - .'Some database upgrades are missing, ' - .'upgrade now' - .'

' - ; - } -} - // language files include_once(get_language_filepath('common.lang.php')); -- cgit v1.2.3