diff options
author | Neil Drumm <drumm@3064.no-reply.drupal.org> | 2006-11-25 09:04:22 +0000 |
---|---|---|
committer | Neil Drumm <drumm@3064.no-reply.drupal.org> | 2006-11-25 09:04:22 +0000 |
commit | 205f8ff01bbbbf010a5bee4734cc169e67d8d452 (patch) | |
tree | 9393543b303f509427ee4debecd8c9d1f9e9bb3e /themes/chameleon | |
parent | b86df33b8cd670fd230f2e13cc0a8098de449eb7 (diff) | |
download | brdo-205f8ff01bbbbf010a5bee4734cc169e67d8d452.tar.gz brdo-205f8ff01bbbbf010a5bee4734cc169e67d8d452.tar.bz2 |
#97941 by webchick. Consistent defaults for 'site_name' variable.
Diffstat (limited to 'themes/chameleon')
-rw-r--r-- | themes/chameleon/chameleon.theme | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/themes/chameleon/chameleon.theme b/themes/chameleon/chameleon.theme index 12100e0bf..65e159ac8 100644 --- a/themes/chameleon/chameleon.theme +++ b/themes/chameleon/chameleon.theme @@ -35,7 +35,7 @@ function chameleon_page($content, $show_blocks = TRUE) { $output = "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\n"; $output .= "<html xmlns=\"http://www.w3.org/1999/xhtml\" lang=\"$language\" xml:lang=\"$language\">\n"; $output .= "<head>\n"; - $output .= " <title>". ($title ? strip_tags($title) ." | ". variable_get("site_name", "Drupal") : variable_get("site_name", "drupal") ." | ". variable_get("site_slogan", "")) ."</title>\n"; + $output .= " <title>". ($title ? strip_tags($title) ." | ". variable_get("site_name", "Drupal") : variable_get("site_name", "Drupal") ." | ". variable_get("site_slogan", "")) ."</title>\n"; $output .= drupal_get_html_head(); $output .= drupal_get_css(); $output .= drupal_get_js(); |