[ticket/10290] Fixed malformed SQL query in viewonline.php

As per Oleg's suggestion, the offending equals sign was removed
so that the query did not return an error.

PHPBB3-10290
This commit is contained in:
David King 2011-07-29 19:35:08 -04:00 committed by Oleg Pudeyev
parent 04c0d6461f
commit 554ec1cbd4

View file

@ -377,7 +377,7 @@ if ($auth->acl_gets('a_group', 'a_groupadd', 'a_groupdel'))
{
$sql = 'SELECT group_id, group_name, group_colour, group_type, group_legend
FROM ' . GROUPS_TABLE . '
WHERE group_legend = > 0
WHERE group_legend > 0
ORDER BY ' . $order_legend . ' ASC';
}
else