Index: update.php =================================================================== RCS file: /cvs/drupal/drupal/update.php,v retrieving revision 1.150 diff -u -F^f -r1.150 update.php --- update.php 29 Jul 2005 20:31:03 -0000 1.150 +++ update.php 15 Aug 2005 22:40:23 -0000 @@ -72,15 +72,6 @@ function update_page() { break; default: - // NOTE: We need the following five lines in order to fix a bug with - // database.mysql (issue #15337). We should be able to remove - // this work around in the future. - $result = db_query("SELECT * FROM {variable} WHERE name = 'update_start' AND value LIKE '%;\"'"); - if ($variable = db_fetch_object($result)) { - $variable->value = unserialize(substr($variable->value, 0, -2) .'";'); - variable_set('update_start', $variable->value); - } - $start = variable_get("update_start", 0); $i = 1; foreach ($sql_updates as $date => $sql) {