1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-04 00:46:23 +02:00

Changing effectively_installed function to check if the config var is set.

This commit is contained in:
Tabitha Backoff
2013-03-31 18:46:25 -04:00
parent a8f5695666
commit 5d669ed1c5

View File

@ -11,7 +11,7 @@ class phpbb_db_migration_data_310_boardindex extends phpbb_db_migration
{
public function effectively_installed()
{
return version_compare($this->config['version'], '3.1.0-dev', '>=');
return isset($this->config['board_index_text']);
}
public function update_data()