diff options
author | Steven Wittens <steven@10.no-reply.drupal.org> | 2004-08-22 15:03:47 +0000 |
---|---|---|
committer | Steven Wittens <steven@10.no-reply.drupal.org> | 2004-08-22 15:03:47 +0000 |
commit | 95cb7f32229e229a39e70a76b2b0f6a14cdc5953 (patch) | |
tree | 59a4487f08443072e5d5fb55ca7ac23f833876b2 | |
parent | 98a9d5ee2d6a272b9f65ad8b69fa3580f3d0ab93 (diff) | |
download | brdo-95cb7f32229e229a39e70a76b2b0f6a14cdc5953.tar.gz brdo-95cb7f32229e229a39e70a76b2b0f6a14cdc5953.tar.bz2 |
- #10269: Missing db_prefix braces in updates.inc.
-rw-r--r-- | database/updates.inc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/database/updates.inc b/database/updates.inc index 0cefdbdd7..6eb667932 100644 --- a/database/updates.inc +++ b/database/updates.inc @@ -1532,8 +1532,8 @@ function update_104() { $ret = array(); if (variable_get('theme_default', 'xtemplate') == 'chameleon') { $ret[] = update_sql("DELETE FROM {system} WHERE name = 'chameleon'"); - $ret[] = update_sql("INSERT INTO system VALUES ('themes/chameleon/chameleon.theme','chameleon','theme','',1,0,0)"); - $ret[] = update_sql("INSERT INTO system VALUES ('themes/chameleon/marvin/style.css','marvin','theme','themes/chameleon/chameleon.theme',1,0,0)"); + $ret[] = update_sql("INSERT INTO {system} VALUES ('themes/chameleon/chameleon.theme','chameleon','theme','',1,0,0)"); + $ret[] = update_sql("INSERT INTO {system} VALUES ('themes/chameleon/marvin/style.css','marvin','theme','themes/chameleon/chameleon.theme',1,0,0)"); if (variable_get("chameleon_stylesheet", "themes/chameleon/pure/chameleon.css") == "themes/chameleon/marvin/chameleon.css") { variable_set('theme_default', 'chameleon/marvin'); } @@ -1543,9 +1543,9 @@ function update_104() { } elseif (variable_get('theme_default', 'xtemplate') == 'xtemplate') { $ret[] = update_sql("DELETE FROM {system} WHERE name = 'xtemplate'"); - $ret[] = update_sql("INSERT INTO system VALUES ('themes/bluemarine/bluemarine.theme','bluemarine','theme','themes/engines/xtemplate/xtemplate.engine',1,0,0)"); - $ret[] = update_sql("INSERT INTO system VALUES ('themes/pushbutton/pushbutton.theme','pushbutton','theme','themes/engines/xtemplate/xtemplate.engine',1,0,0)"); - $ret[] = update_sql("INSERT INTO system VALUES ('themes/engines/xtemplate/xtemplate.engine','xtemplate','theme_engine','',1,0,0)"); + $ret[] = update_sql("INSERT INTO {system} VALUES ('themes/bluemarine/bluemarine.theme','bluemarine','theme','themes/engines/xtemplate/xtemplate.engine',1,0,0)"); + $ret[] = update_sql("INSERT INTO {system} VALUES ('themes/pushbutton/pushbutton.theme','pushbutton','theme','themes/engines/xtemplate/xtemplate.engine',1,0,0)"); + $ret[] = update_sql("INSERT INTO {system} VALUES ('themes/engines/xtemplate/xtemplate.engine','xtemplate','theme_engine','',1,0,0)"); if (variable_get('xtemplate_template', 'default') == 'pushbutton') { variable_set('theme_default', 'pushbutton'); } |