aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/acm/acm_db.php
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/includes/acm/acm_db.php')
-rw-r--r--phpBB/includes/acm/acm_db.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/acm/acm_db.php b/phpBB/includes/acm/acm_db.php
index 08972c8d20..054abdb478 100644
--- a/phpBB/includes/acm/acm_db.php
+++ b/phpBB/includes/acm/acm_db.php
@@ -160,7 +160,7 @@ class acm
if ($max_age > 0 && isset($this->vars[$var_name]))
{
- if ($this->vars[$var_name]['ts'] + $max_age > time())
+ if ($this->vars[$var_name]['ts'] + $max_age < time())
{
$this->destroy($var_name);
return FALSE;