aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/session.php
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/includes/session.php')
-rw-r--r--phpBB/includes/session.php8
1 files changed, 2 insertions, 6 deletions
diff --git a/phpBB/includes/session.php b/phpBB/includes/session.php
index 6189cf27f2..5f5b39fe27 100644
--- a/phpBB/includes/session.php
+++ b/phpBB/includes/session.php
@@ -619,16 +619,12 @@ 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;
}