mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-31 22:10:45 +02:00
[ticket/11621] Remove unnecessary things around index_created() return value.
PHPBB3-11621
This commit is contained in:
@@ -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']);
|
||||
}
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user