From 95cb7f32229e229a39e70a76b2b0f6a14cdc5953 Mon Sep 17 00:00:00 2001
From: Steven Wittens <steven@10.no-reply.drupal.org>
Date: Sun, 22 Aug 2004 15:03:47 +0000
Subject: [PATCH] - #10269: Missing db_prefix braces in updates.inc.

---
 database/updates.inc | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/database/updates.inc b/database/updates.inc
index 0cefdbdd7fcd..6eb667932702 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');
     }
-- 
GitLab