summaryrefslogtreecommitdiff
path: root/themes/garland/template.php
diff options
context:
space:
mode:
Diffstat (limited to 'themes/garland/template.php')
-rw-r--r--themes/garland/template.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/themes/garland/template.php b/themes/garland/template.php
index 16b4d2857..cce7c2659 100644
--- a/themes/garland/template.php
+++ b/themes/garland/template.php
@@ -45,7 +45,7 @@ function garland_preprocess_page(&$vars) {
}
$vars['site_title'] = implode(' ', $site_fields);
if (!empty($site_fields)) {
- $site_fields[0] = '<span>'. $site_fields[0] .'</span>';
+ $site_fields[0] = '<span>' . $site_fields[0] . '</span>';
}
$vars['site_html'] = implode(' ', $site_fields);
@@ -91,9 +91,9 @@ function garland_node_submitted($node) {
function garland_get_ie_styles() {
global $language;
- $ie_styles = '<link type="text/css" rel="stylesheet" media="all" href="' . base_path() . path_to_theme() . '/fix-ie.css" />'. "\n";
+ $ie_styles = '<link type="text/css" rel="stylesheet" media="all" href="' . base_path() . path_to_theme() . '/fix-ie.css" />' . "\n";
if ($language->direction == LANGUAGE_RTL) {
- $ie_styles .= ' <style type="text/css" media="all">@import "' . base_path() . path_to_theme() . '/fix-ie-rtl.css";</style>'. "\n";
+ $ie_styles .= ' <style type="text/css" media="all">@import "' . base_path() . path_to_theme() . '/fix-ie-rtl.css";</style>' . "\n";
}
return $ie_styles;