mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 22:28:51 +00:00
Merge branch 'ticket/imkingdavid/10290' into develop
* ticket/imkingdavid/10290: [ticket/10290] Fixed malformed SQL query in viewonline.php
This commit is contained in:
commit
88eb822126
1 changed files with 1 additions and 1 deletions
|
@ -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
|
$sql = 'SELECT group_id, group_name, group_colour, group_type, group_legend
|
||||||
FROM ' . GROUPS_TABLE . '
|
FROM ' . GROUPS_TABLE . '
|
||||||
WHERE group_legend = > 0
|
WHERE group_legend > 0
|
||||||
ORDER BY ' . $order_legend . ' ASC';
|
ORDER BY ' . $order_legend . ' ASC';
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|
Loading…
Add table
Reference in a new issue