aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/adm/index.php
diff options
context:
space:
mode:
authorHenry Sudhof <kellanved@phpbb.com>2008-01-02 15:56:43 +0000
committerHenry Sudhof <kellanved@phpbb.com>2008-01-02 15:56:43 +0000
commit73e18dcd5afd641b876dd6c4adae405f364cea0f (patch)
tree20063df497849efda8caa3efdd7ab987295979fd /phpBB/adm/index.php
parent00f0159ea292aacf23a3c4cfcfb854689ee5a1c0 (diff)
downloadforums-73e18dcd5afd641b876dd6c4adae405f364cea0f.tar
forums-73e18dcd5afd641b876dd6c4adae405f364cea0f.tar.gz
forums-73e18dcd5afd641b876dd6c4adae405f364cea0f.tar.bz2
forums-73e18dcd5afd641b876dd6c4adae405f364cea0f.tar.xz
forums-73e18dcd5afd641b876dd6c4adae405f364cea0f.zip
A few very minor changes to avoid curveballs.
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@8292 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/adm/index.php')
-rw-r--r--phpBB/adm/index.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/adm/index.php b/phpBB/adm/index.php
index 52810646ec..a3b173ac7a 100644
--- a/phpBB/adm/index.php
+++ b/phpBB/adm/index.php
@@ -45,8 +45,8 @@ define('IN_ADMIN', true);
$phpbb_admin_path = (defined('PHPBB_ADMIN_PATH')) ? PHPBB_ADMIN_PATH : './';
// Some oft used variables
-$safe_mode = (@ini_get('safe_mode') === '1' || @strtolower(ini_get('safe_mode')) === 'on') ? true : false;
-$file_uploads = (@ini_get('file_uploads') === '1' || strtolower(@ini_get('file_uploads')) === 'on') ? true : false;
+$safe_mode = (@ini_get('safe_mode') == '1' || @strtolower(ini_get('safe_mode')) === 'on') ? true : false;
+$file_uploads = (@ini_get('file_uploads') == '1' || strtolower(@ini_get('file_uploads')) === 'on') ? true : false;
$module_id = request_var('i', '');
$mode = request_var('mode', '');