1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-30 21:40:43 +02:00

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