diff options
author | Steven Wittens <steven@10.no-reply.drupal.org> | 2004-09-07 12:44:24 +0000 |
---|---|---|
committer | Steven Wittens <steven@10.no-reply.drupal.org> | 2004-09-07 12:44:24 +0000 |
commit | 7c80820af276723e2adaa187994f6b6033e2482f (patch) | |
tree | 61617c10c4e49bae7514f951c1ca0e7d841db776 | |
parent | df7060015379f78a56c2f8ca79d41d78d995b027 (diff) | |
download | brdo-7c80820af276723e2adaa187994f6b6033e2482f.tar.gz brdo-7c80820af276723e2adaa187994f6b6033e2482f.tar.bz2 |
Fixing bad bluemarine/pushbutton paths in updates.inc.
-rw-r--r-- | database/updates.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/database/updates.inc b/database/updates.inc index 67aca34e1..5b6ebb782 100644 --- a/database/updates.inc +++ b/database/updates.inc @@ -1549,8 +1549,8 @@ 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/bluemarine/xtemplate.xtmpl','bluemarine','theme','themes/engines/xtemplate/xtemplate.engine',1,0,0)"); + $ret[] = update_sql("INSERT INTO {system} VALUES ('themes/pushbutton/xtemplate.xtmpl','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'); |