diff options
author | PayBas <contact@paybas.com> | 2014-05-02 16:05:52 +0200 |
---|---|---|
committer | PayBas <contact@paybas.com> | 2014-05-02 16:05:52 +0200 |
commit | 67c26623ed54e94acb1047021359f17856c098b4 (patch) | |
tree | f4c4dd4821a30890e3f8590c4c6efafc53cd5365 | |
parent | 91ab67d1d951eca41f45c9f702c7fd32651b8965 (diff) | |
download | forums-67c26623ed54e94acb1047021359f17856c098b4.tar forums-67c26623ed54e94acb1047021359f17856c098b4.tar.gz forums-67c26623ed54e94acb1047021359f17856c098b4.tar.bz2 forums-67c26623ed54e94acb1047021359f17856c098b4.tar.xz forums-67c26623ed54e94acb1047021359f17856c098b4.zip |
[ticket/12411] Improved change documentation
PHPBB3-12411
-rw-r--r-- | phpBB/search.php | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/phpBB/search.php b/phpBB/search.php index fe7544d6d3..1c7c970d9f 100644 --- a/phpBB/search.php +++ b/phpBB/search.php @@ -1019,7 +1019,10 @@ if ($keywords || $author || $author_id || $search_id || $submit) * @var array zebra The zebra data of the current user * @var array attachments All the attachments of the search results * @since 3.1.0-a1 - * @changed 3.1.0-b3 Added many vars + * @changed 3.1.0-b3 Added vars show_results, topic_title, replies, + * view_topic_url, folder_img, folder_alt, topic_type, unread_topic, + * topic_unapproved, posts_unapproved, topic_deleted, u_mcp_queue, + * zebra, attachments */ $vars = array( 'row', @@ -1037,7 +1040,7 @@ if ($keywords || $author || $author_id || $search_id || $submit) 'topic_deleted', 'u_mcp_queue', 'zebra', - 'attachments' + 'attachments', ); extract($phpbb_dispatcher->trigger_event('core.search_modify_tpl_ary', compact($vars))); |