summaryrefslogtreecommitdiff
path: root/update.php
diff options
context:
space:
mode:
authorSteven Wittens <steven@10.no-reply.drupal.org>2005-08-17 00:49:36 +0000
committerSteven Wittens <steven@10.no-reply.drupal.org>2005-08-17 00:49:36 +0000
commit1d29abfe344fdb25964d666d880ac44342f63122 (patch)
treeece9459e04be21b7d8346ec108c109bcc69db386 /update.php
parentac0c27b6c820eefe7b4e9ad71a4c8782de290ca8 (diff)
downloadbrdo-1d29abfe344fdb25964d666d880ac44342f63122.tar.gz
brdo-1d29abfe344fdb25964d666d880ac44342f63122.tar.bz2
- #28944: Remove old bugfix code from update.php.
Diffstat (limited to 'update.php')
-rw-r--r--update.php9
1 files changed, 0 insertions, 9 deletions
diff --git a/update.php b/update.php
index 60588976c..025cf4762 100644
--- a/update.php
+++ b/update.php
@@ -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) {