Skip to content
Snippets Groups Projects
Commit 44732b1c authored by Kjartan Mannes's avatar Kjartan Mannes
Browse files

- fixed a parse error in the marvin theme

parent 32ed753e
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
...@@ -28,7 +28,7 @@ function header($title = "") { ...@@ -28,7 +28,7 @@ function header($title = "") {
<title> <title>
<?php <?php
if ($title) { if ($title) {
print $title . " - " variable_get("site_name", "drupal"); print $title ." - ". variable_get("site_name", "drupal");
} }
else { else {
print variable_get("site_name", "drupal") ." - ". variable_get("site_slogan", ""); print variable_get("site_name", "drupal") ." - ". variable_get("site_slogan", "");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment