From 984fd07319d9c9dbd8af7298a94e08132e790f98 Mon Sep 17 00:00:00 2001 From: Nils Adermann Date: Sun, 3 Jul 2011 02:29:51 -0400 Subject: [PATCH] [ticket/10247] Add empty data section to database update for RC4 PHPBB3-10247 --- phpBB/install/database_update.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/phpBB/install/database_update.php b/phpBB/install/database_update.php index 72eb8a6480..e1223335f0 100644 --- a/phpBB/install/database_update.php +++ b/phpBB/install/database_update.php @@ -1983,6 +1983,10 @@ function change_database_data(&$no_updates, $version) // No changes from 3.0.9-RC2 to 3.0.9-RC3 case '3.0.9-RC2': break; + + // No changes from 3.0.9-RC3 to 3.0.9-RC4 + case '3.0.9-RC3': + break; } }