aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTristan Darricau <github@nicofuma.fr>2014-09-19 01:18:32 +0200
committerTristan Darricau <github@nicofuma.fr>2014-09-19 01:18:32 +0200
commit98f02ece97cd92de6f71632247a439a1ba25a408 (patch)
treece8987e003da311e2d96633f041919e3a53de1e6
parente9285d43afcae60f4cec989965423e8e65d4f491 (diff)
parent6bc23ee282494403b7fa1c2c6771e9f3f8ca0938 (diff)
downloadforums-98f02ece97cd92de6f71632247a439a1ba25a408.tar
forums-98f02ece97cd92de6f71632247a439a1ba25a408.tar.gz
forums-98f02ece97cd92de6f71632247a439a1ba25a408.tar.bz2
forums-98f02ece97cd92de6f71632247a439a1ba25a408.tar.xz
forums-98f02ece97cd92de6f71632247a439a1ba25a408.zip
Merge pull request #2970 from nickvergessen/ticket/13062
[ticket/13062] Fix name of "ORDER_BY" key in SQL array * nickvergessen/ticket/13062: [ticket/13062] Fix name of "ORDER_BY" key in SQL array
-rw-r--r--phpBB/viewforum.php2
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,
);
/**