aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/adm/index.php
diff options
context:
space:
mode:
authorVic D'Elfant <vic@phpbb.com>2008-05-29 16:18:56 +0000
committerVic D'Elfant <vic@phpbb.com>2008-05-29 16:18:56 +0000
commit25be384d43f046c3b0b9475e8adac0646da2dd58 (patch)
tree9e039f495350f83a807b8d26da62778e5ff7ae3c /phpBB/adm/index.php
parent25a0f42987f850600c5b8c9d8caf44769540d074 (diff)
downloadforums-25be384d43f046c3b0b9475e8adac0646da2dd58.tar
forums-25be384d43f046c3b0b9475e8adac0646da2dd58.tar.gz
forums-25be384d43f046c3b0b9475e8adac0646da2dd58.tar.bz2
forums-25be384d43f046c3b0b9475e8adac0646da2dd58.tar.xz
forums-25be384d43f046c3b0b9475e8adac0646da2dd58.zip
I'm going to get an award for the smallest commit ever.
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@8578 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/adm/index.php')
-rw-r--r--phpBB/adm/index.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/adm/index.php b/phpBB/adm/index.php
index 358e5a4bf2..a4496c14e2 100644
--- a/phpBB/adm/index.php
+++ b/phpBB/adm/index.php
@@ -45,7 +45,7 @@ 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;
+$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', '');