diff options
author | Andreas Fischer <bantu@phpbb.com> | 2013-10-11 00:14:50 +0200 |
---|---|---|
committer | Andreas Fischer <bantu@phpbb.com> | 2013-10-11 00:14:50 +0200 |
commit | 6e9e07bae2d3b6aefc9292c9447e039e6f713166 (patch) | |
tree | a953d50ee7449bf22edc5e8e51b8fcbb435c833d /phpBB/phpbb/search/fulltext_mysql.php | |
parent | 79928ebf432d03f5ec3a55a34468ea089586a568 (diff) | |
download | forums-6e9e07bae2d3b6aefc9292c9447e039e6f713166.tar forums-6e9e07bae2d3b6aefc9292c9447e039e6f713166.tar.gz forums-6e9e07bae2d3b6aefc9292c9447e039e6f713166.tar.bz2 forums-6e9e07bae2d3b6aefc9292c9447e039e6f713166.tar.xz forums-6e9e07bae2d3b6aefc9292c9447e039e6f713166.zip |
[ticket/11621] Remove unnecessary things around index_created() return value.
PHPBB3-11621
Diffstat (limited to 'phpBB/phpbb/search/fulltext_mysql.php')
-rw-r--r-- | phpBB/phpbb/search/fulltext_mysql.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/search/fulltext_mysql.php b/phpBB/phpbb/search/fulltext_mysql.php index 260b07fdf9..ca2f42358f 100644 --- a/phpBB/phpbb/search/fulltext_mysql.php +++ b/phpBB/phpbb/search/fulltext_mysql.php @@ -855,7 +855,7 @@ class fulltext_mysql extends \phpbb\search\base $this->get_stats(); } - return (isset($this->stats['post_subject']) && isset($this->stats['post_content'])) ? true : false; + return isset($this->stats['post_subject']) && isset($this->stats['post_content']); } /** |