mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 14:18:52 +00:00
Merge branch 'develop-ascraeus' into develop
* develop-ascraeus: [ticket/13062] Fix name of "ORDER_BY" key in SQL array
This commit is contained in:
commit
5091600a16
1 changed files with 1 additions and 1 deletions
|
@ -547,7 +547,7 @@ $sql_ary = array(
|
||||||
AND t.topic_type IN (" . POST_NORMAL . ', ' . POST_STICKY . ")
|
AND t.topic_type IN (" . POST_NORMAL . ', ' . POST_STICKY . ")
|
||||||
$sql_approved
|
$sql_approved
|
||||||
$sql_limit_time",
|
$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,
|
||||||
);
|
);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Add table
Reference in a new issue