summaryrefslogtreecommitdiff
path: root/themes/engines/phptemplate/phptemplate.engine
diff options
context:
space:
mode:
authorNeil Drumm <drumm@3064.no-reply.drupal.org>2006-11-25 09:04:22 +0000
committerNeil Drumm <drumm@3064.no-reply.drupal.org>2006-11-25 09:04:22 +0000
commit205f8ff01bbbbf010a5bee4734cc169e67d8d452 (patch)
tree9393543b303f509427ee4debecd8c9d1f9e9bb3e /themes/engines/phptemplate/phptemplate.engine
parentb86df33b8cd670fd230f2e13cc0a8098de449eb7 (diff)
downloadbrdo-205f8ff01bbbbf010a5bee4734cc169e67d8d452.tar.gz
brdo-205f8ff01bbbbf010a5bee4734cc169e67d8d452.tar.bz2
#97941 by webchick. Consistent defaults for 'site_name' variable.
Diffstat (limited to 'themes/engines/phptemplate/phptemplate.engine')
-rw-r--r--themes/engines/phptemplate/phptemplate.engine2
1 files changed, 1 insertions, 1 deletions
diff --git a/themes/engines/phptemplate/phptemplate.engine b/themes/engines/phptemplate/phptemplate.engine
index b3d8843ef..823239633 100644
--- a/themes/engines/phptemplate/phptemplate.engine
+++ b/themes/engines/phptemplate/phptemplate.engine
@@ -189,7 +189,7 @@ function phptemplate_page($content, $show_blocks = TRUE) {
$head_title = array(strip_tags(drupal_get_title()), variable_get('site_name', 'Drupal'));
}
else {
- $head_title = array(variable_get('site_name', 'drupal'));
+ $head_title = array(variable_get('site_name', 'Drupal'));
if (variable_get('site_slogan', '')) {
$head_title[] = variable_get('site_slogan', '');
}