Skip to content

Commit aa6003b

Browse files
committed
Fix non existent array offset
Signed-off-by: Matt Friedman <maf675@gmail.com>
1 parent f588bac commit aa6003b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

includes/overlords/attention.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ public static function display_attention_list($options = array(), $sort = false)
230230
);
231231

232232
// Do we have to?
233-
if ($row['attention_close_user'])
233+
if (!empty($row['attention_close_user']))
234234
{
235235
$output = array_merge(
236236
$output,

0 commit comments

Comments
 (0)