aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/acm
diff options
context:
space:
mode:
authorLudovic Arnaud <ludovic_arnaud@users.sourceforge.net>2003-08-10 21:19:21 +0000
committerLudovic Arnaud <ludovic_arnaud@users.sourceforge.net>2003-08-10 21:19:21 +0000
commit26e8568c9b5a4095f5f4fb3830d17cc2eae2a081 (patch)
tree0100b9db0d0549bd7b76487c541424d337c135fa /phpBB/includes/acm
parent253b6ff14e518a78b2b5043ebb7c54d5e095412f (diff)
downloadforums-26e8568c9b5a4095f5f4fb3830d17cc2eae2a081.tar
forums-26e8568c9b5a4095f5f4fb3830d17cc2eae2a081.tar.gz
forums-26e8568c9b5a4095f5f4fb3830d17cc2eae2a081.tar.bz2
forums-26e8568c9b5a4095f5f4fb3830d17cc2eae2a081.tar.xz
forums-26e8568c9b5a4095f5f4fb3830d17cc2eae2a081.zip
Greater than, lesser than... what's the big deal?? :P
git-svn-id: file:///svn/phpbb/trunk@4371 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/acm')
-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;