mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-11 05:48:51 +00:00
[ticket/11103] Fix effectively installed check
PHPBB3-11103
This commit is contained in:
parent
11ca2c15d6
commit
247ecdf11b
1 changed files with 1 additions and 1 deletions
|
@ -11,7 +11,7 @@ class phpbb_db_migration_data_310_notifications extends phpbb_db_migration
|
|||
{
|
||||
public function effectively_installed()
|
||||
{
|
||||
return false;//!$this->db_tools->sql_table_exists($this->table_prefix . 'notifications');
|
||||
return $this->db_tools->sql_table_exists($this->table_prefix . 'notifications');
|
||||
}
|
||||
|
||||
static public function depends_on()
|
||||
|
|
Loading…
Add table
Reference in a new issue