From 843cc8956f3096a06b77c5dc5b045efc3302b3d9 Mon Sep 17 00:00:00 2001 From: 8chan Date: Wed, 28 Jan 2015 17:56:49 -0800 Subject: [PATCH] Bug fix: boards with no board owners weren't showing in claims --- claim.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/claim.php b/claim.php index a07ccadf..b1b155c6 100644 --- a/claim.php +++ b/claim.php @@ -36,7 +36,7 @@ function last_activity($board) { } } - if ($mods and ($last_activity_date < $ago or ($last_mod_date and $last_mod_date < $mod_ago))) { + if (($last_activity_date < $ago or ($last_mod_date and $last_mod_date < $mod_ago))) { return array($last_activity_date, $last_mod_date, $mods); } else {