diff options
author | Henry Sudhof <kellanved@phpbb.com> | 2008-01-02 15:56:43 +0000 |
---|---|---|
committer | Henry Sudhof <kellanved@phpbb.com> | 2008-01-02 15:56:43 +0000 |
commit | 73e18dcd5afd641b876dd6c4adae405f364cea0f (patch) | |
tree | 20063df497849efda8caa3efdd7ab987295979fd /phpBB/install/install_install.php | |
parent | 00f0159ea292aacf23a3c4cfcfb854689ee5a1c0 (diff) | |
download | forums-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/install/install_install.php')
-rwxr-xr-x | phpBB/install/install_install.php | 2 |
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']; } |