summaryrefslogtreecommitdiff
path: root/themes
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2008-10-11 20:45:26 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2008-10-11 20:45:26 +0000
commit4002681267044ab1d226ffeade7b8f6fface18ae (patch)
tree2a8a94b38f67989ead19fba8475fc820589e5af4 /themes
parentb9e998170d28363e570d995369b73255f9570ae8 (diff)
downloadbrdo-4002681267044ab1d226ffeade7b8f6fface18ae.tar.gz
brdo-4002681267044ab1d226ffeade7b8f6fface18ae.tar.bz2
#319714 by greggles: Remove needless double-check_url()ing in maintenance.tpl.php.
Diffstat (limited to 'themes')
-rw-r--r--themes/garland/maintenance-page.tpl.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/themes/garland/maintenance-page.tpl.php b/themes/garland/maintenance-page.tpl.php
index 54f66320b..85bc41103 100644
--- a/themes/garland/maintenance-page.tpl.php
+++ b/themes/garland/maintenance-page.tpl.php
@@ -49,9 +49,9 @@
$site_html = implode(' ', $site_fields);
if ($logo || $site_title) {
- print '<h1><a href="' . check_url($base_path) . '" title="' . $site_title . '">';
+ print '<h1><a href="' . $base_path . '" title="' . $site_title . '">';
if ($logo) {
- print '<img src="' . check_url($logo) . '" alt="' . $site_title . '" id="logo" />';
+ print '<img src="' . $logo . '" alt="' . $site_title . '" id="logo" />';
}
print $site_html . '</a></h1>';
}