- Added missing {}. Reported by Bart.
parent
1970f1d2a8
commit
77fbe802a4
|
@ -89,7 +89,7 @@ function update_page() {
|
|||
// 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 '%;\"'");
|
||||
$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);
|
||||
|
|
Loading…
Reference in New Issue