diff options
Diffstat (limited to 'phpBB/includes/session.php')
-rw-r--r-- | phpBB/includes/session.php | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/phpBB/includes/session.php b/phpBB/includes/session.php index 5f5b39fe27..6189cf27f2 100644 --- a/phpBB/includes/session.php +++ b/phpBB/includes/session.php @@ -619,12 +619,16 @@ class session } else { + // www.phpBB-SEO.com SEO TOOLKIT BEGIN + // This part will be fixed in 3.0.9 (see http://tracker.phpbb.com/browse/PHPBB3-9908) + // But as is or updated, it will not mix well with USU and Zero Duplicate (which already removes them) // Bot user, if they have a SID in the Request URI we need to get rid of it // otherwise they'll index this page with the SID, duplicate content oh my! - if (isset($_GET['sid'])) + /*if (isset($_GET['sid'])) { redirect(build_url(array('sid'))); - } + }*/ + // www.phpBB-SEO.com SEO TOOLKIT END $this->data['session_last_visit'] = $this->time_now; } |