aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/install/install_install.php
diff options
context:
space:
mode:
authorHenry Sudhof <kellanved@phpbb.com>2008-01-03 14:37:34 +0000
committerHenry Sudhof <kellanved@phpbb.com>2008-01-03 14:37:34 +0000
commit0f26ffbadea13d97b841dfe56b21da7a5479000a (patch)
tree8377afd89baf1c73f866e99239a0e088adb2e8a5 /phpBB/install/install_install.php
parentfe56349e3496a62b6ff901d949a9517c252df160 (diff)
downloadforums-0f26ffbadea13d97b841dfe56b21da7a5479000a.tar
forums-0f26ffbadea13d97b841dfe56b21da7a5479000a.tar.gz
forums-0f26ffbadea13d97b841dfe56b21da7a5479000a.tar.bz2
forums-0f26ffbadea13d97b841dfe56b21da7a5479000a.tar.xz
forums-0f26ffbadea13d97b841dfe56b21da7a5479000a.zip
cross-ci to the head
git-svn-id: file:///svn/phpbb/trunk@8294 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/install/install_install.php')
-rwxr-xr-xphpBB/install/install_install.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/install/install_install.php b/phpBB/install/install_install.php
index 2c4d9a0fda..bce3cec730 100755
--- a/phpBB/install/install_install.php
+++ b/phpBB/install/install_install.php
@@ -151,7 +151,7 @@ class install_install extends module
// We also give feedback on whether we're running in safe mode
$result = '<strong style="color:green">' . $lang['YES'];
- if (@ini_get('safe_mode') || strtolower(@ini_get('safe_mode')) == 'on')
+ if (@ini_get('safe_mode') == '1' || strtolower(@ini_get('safe_mode')) == 'on')
{
$result .= ', ' . $lang['PHP_SAFE_MODE'];
}