aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes
diff options
context:
space:
mode:
authorMeik Sievertsen <acydburn@phpbb.com>2009-03-28 18:34:09 +0000
committerMeik Sievertsen <acydburn@phpbb.com>2009-03-28 18:34:09 +0000
commite6ed42ed4dde41812b88b47c6e5bb5c41402f14c (patch)
tree32fecd81f8e70946643bbf618148637c098a11de /phpBB/includes
parent45b22fd31f52fbdc884217efc573ccd13bdde92a (diff)
downloadforums-e6ed42ed4dde41812b88b47c6e5bb5c41402f14c.tar
forums-e6ed42ed4dde41812b88b47c6e5bb5c41402f14c.tar.gz
forums-e6ed42ed4dde41812b88b47c6e5bb5c41402f14c.tar.bz2
forums-e6ed42ed4dde41812b88b47c6e5bb5c41402f14c.tar.xz
forums-e6ed42ed4dde41812b88b47c6e5bb5c41402f14c.zip
- Add indicator to be used in code if session was created (user visits the site for the first time)
- Correctly count topic views for guests visiting the website the first time by entering the topic directly (Bug #43445) git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9411 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes')
-rw-r--r--phpBB/includes/session.php9
1 files changed, 9 insertions, 0 deletions
diff --git a/phpBB/includes/session.php b/phpBB/includes/session.php
index b01d0b2281..9cf19e4302 100644
--- a/phpBB/includes/session.php
+++ b/phpBB/includes/session.php
@@ -726,6 +726,15 @@ class session
// Commented out because it will not allow forums to update correctly
// $db->sql_return_on_error(false);
+ // Something quite important: session_page always holds the *last* page visited, except for the *first* visit.
+ // We are not able to simply have an empty session_page btw, therefore we need to tell phpBB how to detect this special case.
+ // If the session id is empty, we have a completely new one and will set an "identifier" here. This identifier is able to be checked later.
+ if (empty($this->data['session_id']))
+ {
+ // This is a temporary variable, only set for the very first visit
+ $this->data['session_created'] = true;
+ }
+
$this->session_id = $this->data['session_id'] = md5(unique_id());
$sql_ary['session_id'] = (string) $this->session_id;