diff options
author | Steven Wittens <steven@10.no-reply.drupal.org> | 2006-10-29 13:21:46 +0000 |
---|---|---|
committer | Steven Wittens <steven@10.no-reply.drupal.org> | 2006-10-29 13:21:46 +0000 |
commit | b01d96aed5004b6b07cf0e9437eb0bd95b8a70da (patch) | |
tree | 1b70f8dde859d3fe15c26f8fd0cf762ac2f84b9f /modules/system | |
parent | e1a7144b3320dacc2b1c7065ef2c126e265967d5 (diff) | |
download | brdo-b01d96aed5004b6b07cf0e9437eb0bd95b8a70da.tar.gz brdo-b01d96aed5004b6b07cf0e9437eb0bd95b8a70da.tar.bz2 |
#88202: Adding Garland theme to core.
Diffstat (limited to 'modules/system')
-rw-r--r-- | modules/system/system.install | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/system/system.install b/modules/system/system.install index f18b2ff87..c94a05234 100644 --- a/modules/system/system.install +++ b/modules/system/system.install @@ -1010,7 +1010,7 @@ function system_install() { } db_query("INSERT INTO {system} (filename, name, type, description, status, throttle, bootstrap, schema_version) VALUES ('themes/engines/phptemplate/phptemplate.engine', 'phptemplate', 'theme_engine', '', 1, 0, 0, 0)"); - db_query("INSERT INTO {system} (filename, name, type, description, status, throttle, bootstrap, schema_version) VALUES ('themes/bluemarine/page.tpl.php', 'bluemarine', 'theme', 'themes/engines/phptemplate/phptemplate.engine', 1, 0, 0, 0)"); + db_query("INSERT INTO {system} (filename, name, type, description, status, throttle, bootstrap, schema_version) VALUES ('themes/garland/page.tpl.php', 'garland', 'theme', 'themes/engines/phptemplate/phptemplate.engine', 1, 0, 0, 0)"); db_query("INSERT INTO {users} (uid,name,mail) VALUES(0,'','')"); @@ -1020,10 +1020,10 @@ function system_install() { db_query("INSERT INTO {permission} VALUES (1,'access content',0)"); db_query("INSERT INTO {permission} VALUES (2,'access comments, access content, post comments, post comments without approval',0)"); - db_query("INSERT INTO {variable} (name,value) VALUES('theme_default', 's:10:\"bluemarine\";')"); + db_query("INSERT INTO {variable} (name,value) VALUES('theme_default', 's:7:\"garland\";')"); - db_query("INSERT INTO {blocks} (module,delta,theme,status) VALUES('user', 0, 'bluemarine', 1)"); - db_query("INSERT INTO {blocks} (module,delta,theme,status) VALUES('user', 1, 'bluemarine', 1)"); + db_query("INSERT INTO {blocks} (module,delta,theme,status) VALUES('user', 0, 'garland', 1)"); + db_query("INSERT INTO {blocks} (module,delta,theme,status) VALUES('user', 1, 'garland', 1)"); db_query("INSERT INTO {node_access} VALUES (0, 0, 'all', 1, 0, 0)"); |