diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2014-09-19 00:56:16 +0200 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2014-09-19 00:56:16 +0200 |
commit | 6bc23ee282494403b7fa1c2c6771e9f3f8ca0938 (patch) | |
tree | ce8987e003da311e2d96633f041919e3a53de1e6 /phpBB/viewforum.php | |
parent | e9285d43afcae60f4cec989965423e8e65d4f491 (diff) | |
download | forums-6bc23ee282494403b7fa1c2c6771e9f3f8ca0938.tar forums-6bc23ee282494403b7fa1c2c6771e9f3f8ca0938.tar.gz forums-6bc23ee282494403b7fa1c2c6771e9f3f8ca0938.tar.bz2 forums-6bc23ee282494403b7fa1c2c6771e9f3f8ca0938.tar.xz forums-6bc23ee282494403b7fa1c2c6771e9f3f8ca0938.zip |
[ticket/13062] Fix name of "ORDER_BY" key in SQL array
PHPBB3-13062
Diffstat (limited to 'phpBB/viewforum.php')
-rw-r--r-- | phpBB/viewforum.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/viewforum.php b/phpBB/viewforum.php index a1e8c9814b..6379da6802 100644 --- a/phpBB/viewforum.php +++ b/phpBB/viewforum.php @@ -547,7 +547,7 @@ $sql_ary = array( AND t.topic_type IN (" . POST_NORMAL . ', ' . POST_STICKY . ") $sql_approved $sql_limit_time", - 'ORDER BY' => 't.topic_type ' . ((!$store_reverse) ? 'DESC' : 'ASC') . ', ' . $sql_sort_order, + 'ORDER_BY' => 't.topic_type ' . ((!$store_reverse) ? 'DESC' : 'ASC') . ', ' . $sql_sort_order, ); /** |