aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/cron.php
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/cron.php')
-rw-r--r--phpBB/cron.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/phpBB/cron.php b/phpBB/cron.php
index 8591803f30..7fe4ae7da6 100644
--- a/phpBB/cron.php
+++ b/phpBB/cron.php
@@ -16,7 +16,8 @@ $phpbb_root_path = './';
$phpEx = substr(strrchr(__FILE__, '.'), 1);
include($phpbb_root_path . 'common.' . $phpEx);
-$user->session_begin();
+// Do not update users last page entry
+$user->session_begin(false);
$auth->acl($user->data);
$cron_type = request_var('cron_type', '');