[ticket/11621] Remove unnecessary things around index_created() return value.

PHPBB3-11621
This commit is contained in:
Andreas Fischer 2013-10-11 00:14:50 +02:00
parent 79928ebf43
commit 6e9e07bae2

View file

@ -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']);
}
/**