From 538acb3db5e91f983849cd70fa754bb29ee364a0 Mon Sep 17 00:00:00 2001 From: Chris Smith Date: Wed, 5 Nov 2008 22:03:16 +0000 Subject: Remove deprecated language key and update any references in the database to the correct one. git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9049 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/install/database_update.php | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'phpBB/install/database_update.php') diff --git a/phpBB/install/database_update.php b/phpBB/install/database_update.php index e84d63a950..a6abc21508 100644 --- a/phpBB/install/database_update.php +++ b/phpBB/install/database_update.php @@ -1935,6 +1935,16 @@ function change_database_data(&$no_updates, $version) $no_updates = false; break; + + // Changes from 3.0.3-RC1 to 3.0.3-RC2 + case '3.0.3-RC1': + $sql = 'UPDATE ' . LOG_TABLE . " + SET log_operation = 'LOG_DELETE_TOPIC' + WHERE log_operation = 'LOG_TOPIC_DELETED'"; + _sql($sql, $errored, $error_ary); + + $no_updates = false; + break; } } -- cgit v1.2.1