aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/session.php
diff options
context:
space:
mode:
authorMeik Sievertsen <acydburn@phpbb.com>2006-11-28 11:04:26 +0000
committerMeik Sievertsen <acydburn@phpbb.com>2006-11-28 11:04:26 +0000
commited24dd9aeb670bf6639af9e223b7df4deef604bf (patch)
treeba748fc826036d6a4ae99b43e90d056cc8a63b88 /phpBB/includes/session.php
parente759598fc6c220a053d59865a248b5e1c3bd6662 (diff)
downloadforums-ed24dd9aeb670bf6639af9e223b7df4deef604bf.tar
forums-ed24dd9aeb670bf6639af9e223b7df4deef604bf.tar.gz
forums-ed24dd9aeb670bf6639af9e223b7df4deef604bf.tar.bz2
forums-ed24dd9aeb670bf6639af9e223b7df4deef604bf.tar.xz
forums-ed24dd9aeb670bf6639af9e223b7df4deef604bf.zip
fix for bug #5676 - of course the "delete install folder" notice should not occur if directly within installation.
git-svn-id: file:///svn/phpbb/trunk@6684 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/session.php')
-rw-r--r--phpBB/includes/session.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/session.php b/phpBB/includes/session.php
index ad6a049a65..1408463c0b 100644
--- a/phpBB/includes/session.php
+++ b/phpBB/includes/session.php
@@ -1210,7 +1210,7 @@ class user extends session
// Disable board if the install/ directory is still present
// For the brave development army we do not care about this, else we need to comment out this everytime we develop locally
- if (!defined('DEBUG_EXTRA') && !defined('ADMIN_START') && !defined('IN_LOGIN') && file_exists($phpbb_root_path . 'install'))
+ if (!defined('DEBUG_EXTRA') && !defined('ADMIN_START') && !defined('IN_INSTALL') && !defined('IN_LOGIN') && file_exists($phpbb_root_path . 'install'))
{
// Adjust the message slightly according to the permissions
if ($auth->acl_gets('a_', 'm_'))