aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/index.php
diff options
context:
space:
mode:
authorthe_systech <the_systech@users.sourceforge.net>2001-12-28 19:55:27 +0000
committerthe_systech <the_systech@users.sourceforge.net>2001-12-28 19:55:27 +0000
commite3777f10cdd72d789754251cceb088aa16c2d8b1 (patch)
tree2ec15924c9e29b33f37f00840c7072d6cd38e0f5 /phpBB/index.php
parent17b344141240d18ad9f15006fff8b6c3df9c2495 (diff)
downloadforums-e3777f10cdd72d789754251cceb088aa16c2d8b1.tar
forums-e3777f10cdd72d789754251cceb088aa16c2d8b1.tar.gz
forums-e3777f10cdd72d789754251cceb088aa16c2d8b1.tar.bz2
forums-e3777f10cdd72d789754251cceb088aa16c2d8b1.tar.xz
forums-e3777f10cdd72d789754251cceb088aa16c2d8b1.zip
Fix for bug #488041.. Forum ordering on Postgres
git-svn-id: file:///svn/phpbb/trunk@1733 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/index.php')
-rw-r--r--phpBB/index.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/phpBB/index.php b/phpBB/index.php
index 7d4e46d613..6b63ee40f8 100644
--- a/phpBB/index.php
+++ b/phpBB/index.php
@@ -164,7 +164,8 @@ if($total_categories = $db->sql_numrows($q_categories))
WHERE p.post_id = f.forum_last_post_id
)
$limit_forums
- )";
+ )
+ ORDER BY f.cat_id, f.forum_order";
break;
case 'oracle':
@@ -472,4 +473,4 @@ $template->pparse("body");
include($phpbb_root_path . 'includes/page_tail.'.$phpEx);
-?> \ No newline at end of file
+?>