aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/search.php
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2015-07-23 08:54:13 +0200
committerMarc Alexander <admin@m-a-styles.de>2015-07-23 08:54:13 +0200
commitb24ce025267b0d3d4192b27eeb30ebb0f629cf8b (patch)
tree91f2d79c7644f57140b1c27b0f4808965aa07c5d /phpBB/search.php
parent5e7550ee53ca20dd8a949eb105f38e8007116c2c (diff)
downloadforums-b24ce025267b0d3d4192b27eeb30ebb0f629cf8b.tar
forums-b24ce025267b0d3d4192b27eeb30ebb0f629cf8b.tar.gz
forums-b24ce025267b0d3d4192b27eeb30ebb0f629cf8b.tar.bz2
forums-b24ce025267b0d3d4192b27eeb30ebb0f629cf8b.tar.xz
forums-b24ce025267b0d3d4192b27eeb30ebb0f629cf8b.zip
[ticket/13899] Use multi-line definition for vars array
PHPBB3-13899
Diffstat (limited to 'phpBB/search.php')
-rw-r--r--phpBB/search.php10
1 files changed, 9 insertions, 1 deletions
diff --git a/phpBB/search.php b/phpBB/search.php
index 59e619f70d..d8f0bd1426 100644
--- a/phpBB/search.php
+++ b/phpBB/search.php
@@ -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']);