aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes
diff options
context:
space:
mode:
authorDhruv <dhruv.goel92@gmail.com>2012-08-16 00:09:35 +0530
committerDhruv <dhruv.goel92@gmail.com>2012-11-09 15:54:36 +0100
commit1ded6d94ac3ce2035f41cb0d32137e5a0deb7c8c (patch)
treed01e41c42a6675d7e049530e62fdce002c089964 /phpBB/includes
parent8eed3591a9019cf8a377b7690130c1d466aa3ea2 (diff)
downloadforums-1ded6d94ac3ce2035f41cb0d32137e5a0deb7c8c.tar
forums-1ded6d94ac3ce2035f41cb0d32137e5a0deb7c8c.tar.gz
forums-1ded6d94ac3ce2035f41cb0d32137e5a0deb7c8c.tar.bz2
forums-1ded6d94ac3ce2035f41cb0d32137e5a0deb7c8c.tar.xz
forums-1ded6d94ac3ce2035f41cb0d32137e5a0deb7c8c.zip
[ticket/11050] add missing @var in native search
PHPBB3-11050
Diffstat (limited to 'phpBB/includes')
-rw-r--r--phpBB/includes/search/fulltext_native.php3
1 files changed, 3 insertions, 0 deletions
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();