diff options
author | PayBas <contact@paybas.com> | 2014-05-02 14:12:01 +0200 |
---|---|---|
committer | PayBas <contact@paybas.com> | 2014-05-02 14:12:01 +0200 |
commit | c63f2656a80a49a6f27aa38c460420087e7fa066 (patch) | |
tree | 097001e2b35e448bfb023b02867002904cdc171e | |
parent | 573ec0dbe9a1ed9c4b17cfe910b3cd017dbeb63b (diff) | |
download | forums-c63f2656a80a49a6f27aa38c460420087e7fa066.tar forums-c63f2656a80a49a6f27aa38c460420087e7fa066.tar.gz forums-c63f2656a80a49a6f27aa38c460420087e7fa066.tar.bz2 forums-c63f2656a80a49a6f27aa38c460420087e7fa066.tar.xz forums-c63f2656a80a49a6f27aa38c460420087e7fa066.zip |
[ticket/12366] Conform to new event coding guidelines
PHPBB3-12366
-rw-r--r-- | phpBB/search.php | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/phpBB/search.php b/phpBB/search.php index d32183b80d..301c29cd44 100644 --- a/phpBB/search.php +++ b/phpBB/search.php @@ -677,7 +677,21 @@ if ($keywords || $author || $author_id || $search_id || $submit) * @var int start The starting id of the results * @since 3.1.0-b3 */ - $vars = array('sql_array', 'zebra', 'total_match_count', 'keywords', 'sort_by_sql', 's_sort_dir', 's_sort_key', 's_limit_days', 'ex_fid_ary', 'author_id_ary', 'search_fields', 'search_id', 'start'); + $vars = array( + 'sql_array', + 'zebra', + 'total_match_count', + 'keywords', + 'sort_by_sql', + 's_sort_dir', + 's_sort_key', + 's_limit_days', + 'ex_fid_ary', + 'author_id_ary', + 'search_fields', + 'search_id', + 'start' + ); extract($phpbb_dispatcher->trigger_event('core.search_get_posts_data', compact($vars))); $sql = $db->sql_build_query('SELECT', $sql_array); |