aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes
diff options
context:
space:
mode:
authorMeik Sievertsen <acydburn@phpbb.com>2007-11-03 20:31:05 +0000
committerMeik Sievertsen <acydburn@phpbb.com>2007-11-03 20:31:05 +0000
commit18d014c7656717fe09aba0cafe2967eae7cea421 (patch)
tree7e0a54c10e7d6f70d4c64c0e76f1289038a3a389 /phpBB/includes
parent61fc9605faa29d1bc5b1be8df2a4ab7f36c92264 (diff)
downloadforums-18d014c7656717fe09aba0cafe2967eae7cea421.tar
forums-18d014c7656717fe09aba0cafe2967eae7cea421.tar.gz
forums-18d014c7656717fe09aba0cafe2967eae7cea421.tar.bz2
forums-18d014c7656717fe09aba0cafe2967eae7cea421.tar.xz
forums-18d014c7656717fe09aba0cafe2967eae7cea421.zip
further fixes
- fix infinite loop on checking ban for those not having ever visited the page (or removed all session cookies) - avatar width/height switched in language files - fix windows switching to background on IE7 (smlies window for example) git-svn-id: file:///svn/phpbb/trunk@8224 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes')
-rw-r--r--phpBB/includes/session.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/phpBB/includes/session.php b/phpBB/includes/session.php
index 7ca2cbcdd0..5ecb18a001 100644
--- a/phpBB/includes/session.php
+++ b/phpBB/includes/session.php
@@ -1018,7 +1018,8 @@ class session
// If the session is empty we need to create a valid one...
if (empty($this->session_id))
{
- $this->session_create(ANONYMOUS);
+ // This seems to be no longer needed? - #14971
+// $this->session_create(ANONYMOUS);
}
// Initiate environment ... since it won't be set at this stage