From 6bc23ee282494403b7fa1c2c6771e9f3f8ca0938 Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Fri, 19 Sep 2014 00:56:16 +0200 Subject: [PATCH] [ticket/13062] Fix name of "ORDER_BY" key in SQL array PHPBB3-13062 --- phpBB/viewforum.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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, ); /**