From 26e8568c9b5a4095f5f4fb3830d17cc2eae2a081 Mon Sep 17 00:00:00 2001 From: Ludovic Arnaud Date: Sun, 10 Aug 2003 21:19:21 +0000 Subject: [PATCH] Greater than, lesser than... what's the big deal?? :P git-svn-id: file:///svn/phpbb/trunk@4371 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/includes/acm/acm_db.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;