mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 14:18:52 +00:00
[ticket/11621] Remove unnecessary things around index_created() return value.
PHPBB3-11621
This commit is contained in:
parent
79928ebf43
commit
6e9e07bae2
1 changed files with 1 additions and 1 deletions
|
@ -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']);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Reference in a new issue