diff options
author | Nils Adermann <naderman@naderman.de> | 2013-09-16 03:50:47 +0200 |
---|---|---|
committer | Nils Adermann <naderman@naderman.de> | 2013-09-16 03:50:47 +0200 |
commit | 3860b37741c21576dae2f02e3754aa322c24567f (patch) | |
tree | 7eea95a08ae14a57a4da414d1ce717df2bd6915e /phpBB/phpbb/session.php | |
parent | 8fd84ae87933a3fa537fc7d1496da08ff2be811a (diff) | |
download | forums-3860b37741c21576dae2f02e3754aa322c24567f.tar forums-3860b37741c21576dae2f02e3754aa322c24567f.tar.gz forums-3860b37741c21576dae2f02e3754aa322c24567f.tar.bz2 forums-3860b37741c21576dae2f02e3754aa322c24567f.tar.xz forums-3860b37741c21576dae2f02e3754aa322c24567f.zip |
[ticket/11700] Actually "one" in comments is not a class
PHPBB3-11700
Diffstat (limited to 'phpBB/phpbb/session.php')
-rw-r--r-- | phpBB/phpbb/session.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/phpbb/session.php b/phpBB/phpbb/session.php index 6925ebbc6a..2bfa55334d 100644 --- a/phpBB/phpbb/session.php +++ b/phpBB/phpbb/session.php @@ -199,7 +199,7 @@ class session * This is where all session activity begins. We gather various pieces of * information from the client and server. We test to see if a session already * exists. If it does, fine and dandy. If it doesn't we'll go on to create a - * new \one ... pretty logical heh? We also examine the system load (if we're + * new one ... pretty logical heh? We also examine the system load (if we're * running on a system which makes such information readily available) and * halt if it's above an admin definable limit. * @@ -494,7 +494,7 @@ class session } } - // If we reach here then no (valid) session exists. So we'll create a new \one + // If we reach here then no (valid) session exists. So we'll create a new one return $this->session_create(); } @@ -801,7 +801,7 @@ class session // 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 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 |