diff options
author | PayBas <contact@paybas.com> | 2014-06-22 02:43:24 +0200 |
---|---|---|
committer | PayBas <contact@paybas.com> | 2014-06-22 02:43:24 +0200 |
commit | 22966927ea24a6f196fdb82e56d499efa0a3a0b8 (patch) | |
tree | ad5e1d0df01cf93bb015db82a817ca89559482b1 | |
parent | 566615fa318e407cafd028593faba208fa2b4e25 (diff) | |
download | forums-22966927ea24a6f196fdb82e56d499efa0a3a0b8.tar forums-22966927ea24a6f196fdb82e56d499efa0a3a0b8.tar.gz forums-22966927ea24a6f196fdb82e56d499efa0a3a0b8.tar.bz2 forums-22966927ea24a6f196fdb82e56d499efa0a3a0b8.tar.xz forums-22966927ea24a6f196fdb82e56d499efa0a3a0b8.zip |
[ticket/12758] Add show_results var to core.search_modify_rowset
PHPBB3-12758
-rw-r--r-- | phpBB/search.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/phpBB/search.php b/phpBB/search.php index f1f02ac766..7276315221 100644 --- a/phpBB/search.php +++ b/phpBB/search.php @@ -923,6 +923,7 @@ if ($keywords || $author || $author_id || $search_id || $submit) * @var array attachments Array with posts attachments data * @var string hilit String to highlight * @var array rowset Array with the search results data + * @var string show_results String indicating the show results mode * @var array topic_tracking_info Array with the topics tracking data * @var string u_hilit Highlight string to be injected into URL * @var string view Search results view mode @@ -933,6 +934,7 @@ if ($keywords || $author || $author_id || $search_id || $submit) 'attachments', 'hilit', 'rowset', + 'show_results', 'topic_tracking_info', 'u_hilit', 'view', |