diff options
author | Steven Wittens <steven@10.no-reply.drupal.org> | 2001-12-15 22:31:32 +0000 |
---|---|---|
committer | Steven Wittens <steven@10.no-reply.drupal.org> | 2001-12-15 22:31:32 +0000 |
commit | 32ed753e0b2e9ab31c4d248aeef7fc752ee5ec9d (patch) | |
tree | dd950dc3444abb430c8c7b2df30e3b49b205c600 | |
parent | d03f42c35f9d37ad688ed4982054d0efdf64352a (diff) | |
download | brdo-32ed753e0b2e9ab31c4d248aeef7fc752ee5ec9d.tar.gz brdo-32ed753e0b2e9ab31c4d248aeef7fc752ee5ec9d.tar.bz2 |
- Reversed the $title - $sitename order in the title to be the same as the other themes.
-rw-r--r-- | themes/marvin/marvin.theme | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/themes/marvin/marvin.theme b/themes/marvin/marvin.theme index 774a25399..ddc4cb642 100644 --- a/themes/marvin/marvin.theme +++ b/themes/marvin/marvin.theme @@ -18,7 +18,7 @@ var $foreground = "#000000"; var $background = "#EAEAEA"; - function header($title = 0) { + function header($title = "") { global $HTTP_USER_AGENT; ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> @@ -28,7 +28,7 @@ <title> <?php if ($title) { - print variable_get("site_name", "drupal") ." - $title"; + print $title . " - " variable_get("site_name", "drupal"); } else { print variable_get("site_name", "drupal") ." - ". variable_get("site_slogan", ""); |