mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-27 04:18:55 +00:00
Add forum ordering to Index
git-svn-id: file:///svn/phpbb/trunk@68 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
ad9d4d2605
commit
760e5a23eb
1 changed files with 2 additions and 2 deletions
|
@ -70,7 +70,7 @@ if($total_categories)
|
||||||
LEFT JOIN ".POSTS_TABLE." p ON p.post_id = f.forum_last_post_id
|
LEFT JOIN ".POSTS_TABLE." p ON p.post_id = f.forum_last_post_id
|
||||||
LEFT JOIN ".USERS_TABLE." u ON u.user_id = p.poster_id
|
LEFT JOIN ".USERS_TABLE." u ON u.user_id = p.poster_id
|
||||||
$limit_forums
|
$limit_forums
|
||||||
ORDER BY f.forum_id";
|
ORDER BY f.cat_id, f.forums_order";
|
||||||
if(!$q_forums = $db->sql_query($sql))
|
if(!$q_forums = $db->sql_query($sql))
|
||||||
{
|
{
|
||||||
error_die($db, QUERY_ERROR);
|
error_die($db, QUERY_ERROR);
|
||||||
|
|
Loading…
Add table
Reference in a new issue