Changeset 1076


Ignore:
Timestamp:
Mar 10, 2006, 11:53:29 PM (18 years ago)
Author:
rub
Message:

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/common.inc.php

    r1075 r1076  
    133133or die ( "Could not connect to database" );
    134134
    135 //
    136 // Setup gallery wide options, if this fails then we output a CRITICAL_ERROR
    137 // since basic gallery information is not available
    138 //
    139 $query = '
    140 SELECT param,value
    141  FROM '.CONFIG_TABLE.'
    142 ;';
    143 if (!($result = pwg_query($query)))
    144 {
    145   die("Could not query config information");
    146 }
    147 
    148 while ( $row =mysql_fetch_array( $result ) )
    149 {
    150   if ( isset( $row['value'] ) )
    151   {
    152     $conf[$row['param']] = $row['value'];
    153   }
    154   else
    155   {
    156     $conf[$row['param']] = '';
    157   }
    158   // If the field is true or false, the variable is transformed into a
    159   // boolean value.
    160   if ( $conf[$row['param']] == 'true' or $conf[$row['param']] == 'false' )
    161   {
    162     $conf[$row['param']] = get_boolean( $conf[$row['param']] );
    163   }
    164 }
    165 
    166 include(PHPWG_ROOT_PATH.'include/user.inc.php');
    167 
    168 if (is_admin() and $conf['check_upgrade_feed'])
     135if ($conf['check_upgrade_feed'])
    169136{
    170137  // retrieve already applied upgrades
     
    191158}
    192159
     160//
     161// Setup gallery wide options, if this fails then we output a CRITICAL_ERROR
     162// since basic gallery information is not available
     163//
     164$query = '
     165SELECT param,value
     166 FROM '.CONFIG_TABLE.'
     167;';
     168if (!($result = pwg_query($query)))
     169{
     170  die("Could not query config information");
     171}
     172
     173while ( $row =mysql_fetch_array( $result ) )
     174{
     175  if ( isset( $row['value'] ) )
     176  {
     177    $conf[$row['param']] = $row['value'];
     178  }
     179  else
     180  {
     181    $conf[$row['param']] = '';
     182  }
     183  // If the field is true or false, the variable is transformed into a
     184  // boolean value.
     185  if ( $conf[$row['param']] == 'true' or $conf[$row['param']] == 'false' )
     186  {
     187    $conf[$row['param']] = get_boolean( $conf[$row['param']] );
     188  }
     189}
     190
     191include(PHPWG_ROOT_PATH.'include/user.inc.php');
     192
    193193// language files
    194194include_once(get_language_filepath('common.lang.php'));
Note: See TracChangeset for help on using the changeset viewer.