diff options
| -rw-r--r-- | phpBB/viewforum.php | 12 | 
1 files changed, 12 insertions, 0 deletions
| diff --git a/phpBB/viewforum.php b/phpBB/viewforum.php index 416ffe3d90..0d56a5a9c5 100644 --- a/phpBB/viewforum.php +++ b/phpBB/viewforum.php @@ -598,6 +598,18 @@ else  	$sql_start = $start;  } +/** + * Modify the topics sort ordering if needed + * + * @event core.viewforum_modify_sort_direction + * @var string	direction	Topics sort order + * @since 3.2.5-RC1 + */ +$vars = array( +	'direction', +); +extract($phpbb_dispatcher->trigger_event('core.viewforum_modify_sort_direction', compact($vars))); +  if (is_array($sort_by_sql[$sort_key]))  {  	$sql_sort_order = implode(' ' . $direction . ', ', $sort_by_sql[$sort_key]) . ' ' . $direction; | 
