diff options
author | Kjartan Mannes <kjartan@2.no-reply.drupal.org> | 2001-12-16 01:28:41 +0000 |
---|---|---|
committer | Kjartan Mannes <kjartan@2.no-reply.drupal.org> | 2001-12-16 01:28:41 +0000 |
commit | 44732b1c4440ffdf8150276a7be972f85ab502fa (patch) | |
tree | 9013f783e0e37e49161147d51277836e6d0d63ae | |
parent | 32ed753e0b2e9ab31c4d248aeef7fc752ee5ec9d (diff) | |
download | brdo-44732b1c4440ffdf8150276a7be972f85ab502fa.tar.gz brdo-44732b1c4440ffdf8150276a7be972f85ab502fa.tar.bz2 |
- fixed a parse error in the marvin theme
-rw-r--r-- | themes/marvin/marvin.theme | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/themes/marvin/marvin.theme b/themes/marvin/marvin.theme index ddc4cb642..fc3f5580b 100644 --- a/themes/marvin/marvin.theme +++ b/themes/marvin/marvin.theme @@ -28,7 +28,7 @@ <title> <?php if ($title) { - print $title . " - " variable_get("site_name", "drupal"); + print $title ." - ". variable_get("site_name", "drupal"); } else { print variable_get("site_name", "drupal") ." - ". variable_get("site_slogan", ""); |