From 1ded6d94ac3ce2035f41cb0d32137e5a0deb7c8c Mon Sep 17 00:00:00 2001 From: Dhruv Date: Thu, 16 Aug 2012 00:09:35 +0530 Subject: [PATCH] [ticket/11050] add missing @var in native search PHPBB3-11050 --- phpBB/includes/search/fulltext_native.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/phpBB/includes/search/fulltext_native.php b/phpBB/includes/search/fulltext_native.php index 8f413bcaaf..729ec17a75 100644 --- a/phpBB/includes/search/fulltext_native.php +++ b/phpBB/includes/search/fulltext_native.php @@ -49,16 +49,19 @@ class phpbb_search_fulltext_native extends phpbb_search_base /** * Post ids of posts containing words that are to be included + * @var array */ protected $must_contain_ids = array(); /** * Post ids of posts containing words that should not be included + * @var array */ protected $must_not_contain_ids = array(); /** * Post ids of posts containing atleast one word that needs to be excluded + * @var array */ protected $must_exclude_one_ids = array();