diff options
author | Nathan Guse <nathaniel.guse@gmail.com> | 2013-02-28 15:06:52 -0600 |
---|---|---|
committer | Nathan Guse <nathaniel.guse@gmail.com> | 2013-02-28 15:06:52 -0600 |
commit | 247ecdf11bd404f4842a93afbf9c5dae9d541f55 (patch) | |
tree | 7a205dff4e10fdb5c29b26c86937873febe1f3d4 | |
parent | 11ca2c15d68629d5b7daa5402fe33e54c1286c49 (diff) | |
download | forums-247ecdf11bd404f4842a93afbf9c5dae9d541f55.tar forums-247ecdf11bd404f4842a93afbf9c5dae9d541f55.tar.gz forums-247ecdf11bd404f4842a93afbf9c5dae9d541f55.tar.bz2 forums-247ecdf11bd404f4842a93afbf9c5dae9d541f55.tar.xz forums-247ecdf11bd404f4842a93afbf9c5dae9d541f55.zip |
[ticket/11103] Fix effectively installed check
PHPBB3-11103
-rw-r--r-- | phpBB/includes/db/migration/data/310/notifications.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/db/migration/data/310/notifications.php b/phpBB/includes/db/migration/data/310/notifications.php index 6299ede7f7..82bfd4cb2d 100644 --- a/phpBB/includes/db/migration/data/310/notifications.php +++ b/phpBB/includes/db/migration/data/310/notifications.php @@ -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() |