mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-11 17:01:07 +02:00
Merge branch '3.2.x' into 3.3.x
This commit is contained in:
@ -710,10 +710,28 @@ if (count($topic_list))
|
|||||||
'SELECT' => $sql_array['SELECT'],
|
'SELECT' => $sql_array['SELECT'],
|
||||||
'FROM' => $sql_array['FROM'],
|
'FROM' => $sql_array['FROM'],
|
||||||
'LEFT_JOIN' => $sql_array['LEFT_JOIN'],
|
'LEFT_JOIN' => $sql_array['LEFT_JOIN'],
|
||||||
|
|
||||||
'WHERE' => $db->sql_in_set('t.topic_id', $topic_list),
|
'WHERE' => $db->sql_in_set('t.topic_id', $topic_list),
|
||||||
);
|
);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Event to modify the SQL query before obtaining topics/stickies
|
||||||
|
*
|
||||||
|
* @event core.viewforum_modify_topic_list_sql
|
||||||
|
* @var int forum_id The forum ID
|
||||||
|
* @var array forum_data Data about the forum
|
||||||
|
* @var array topic_list Topic ids array
|
||||||
|
* @var array sql_array SQL query array for obtaining topics/stickies
|
||||||
|
*
|
||||||
|
* @since 3.2.10-RC1
|
||||||
|
*/
|
||||||
|
$vars = [
|
||||||
|
'forum_id',
|
||||||
|
'forum_data',
|
||||||
|
'topic_list',
|
||||||
|
'sql_array',
|
||||||
|
];
|
||||||
|
extract($phpbb_dispatcher->trigger_event('core.viewforum_modify_topic_list_sql', compact($vars)));
|
||||||
|
|
||||||
// If store_reverse, then first obtain topics, then stickies, else the other way around...
|
// If store_reverse, then first obtain topics, then stickies, else the other way around...
|
||||||
// Funnily enough you typically save one query if going from the last page to the middle (store_reverse) because
|
// Funnily enough you typically save one query if going from the last page to the middle (store_reverse) because
|
||||||
// the number of stickies are not known
|
// the number of stickies are not known
|
||||||
|
Reference in New Issue
Block a user