1
0
mirror of https://github.com/vichan-devel/vichan.git synced 2024-11-28 17:31:00 +01:00

Bug fix: boards with no board owners weren't showing in claims

This commit is contained in:
8chan 2015-01-28 17:56:49 -08:00
parent 3ab6489154
commit 843cc8956f

View File

@ -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 {