mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00:00
[ticket/13899] Use multi-line definition for vars array
PHPBB3-13899
This commit is contained in:
parent
5e7550ee53
commit
b24ce02526
1 changed files with 9 additions and 1 deletions
|
@ -1177,7 +1177,15 @@ if ($keywords || $author || $author_id || $search_id || $submit)
|
|||
* @since 3.1.0-RC4
|
||||
* @changed 3.1.6-RC1 Added total_match_count and keywords
|
||||
*/
|
||||
$vars = array('author_id', 'l_search_title', 'search_id', 'show_results', 'start', 'total_match_count', 'keywords');
|
||||
$vars = array(
|
||||
'author_id',
|
||||
'l_search_title',
|
||||
'search_id',
|
||||
'show_results',
|
||||
'start',
|
||||
'total_match_count',
|
||||
'keywords',
|
||||
);
|
||||
extract($phpbb_dispatcher->trigger_event('core.search_results_modify_search_title', compact($vars)));
|
||||
|
||||
page_header(($l_search_title) ? $l_search_title : $user->lang['SEARCH']);
|
||||
|
|
Loading…
Add table
Reference in a new issue