From 247ecdf11bd404f4842a93afbf9c5dae9d541f55 Mon Sep 17 00:00:00 2001 From: Nathan Guse Date: Thu, 28 Feb 2013 15:06:52 -0600 Subject: [PATCH] [ticket/11103] Fix effectively installed check PHPBB3-11103 --- phpBB/includes/db/migration/data/310/notifications.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()