From ef3224a7dff71fa37c673cf84bdc4876093b16a4 Mon Sep 17 00:00:00 2001 From: Bart Van Der Meerssche Date: Thu, 10 Sep 2009 09:23:40 +0000 Subject: [PATCH] web: tab text should always show Flukso --- web/drupal/themes/flukso/template.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/web/drupal/themes/flukso/template.php b/web/drupal/themes/flukso/template.php index 79a3892..9099d1b 100644 --- a/web/drupal/themes/flukso/template.php +++ b/web/drupal/themes/flukso/template.php @@ -88,7 +88,7 @@ function flukso_preprocess_node(&$vars) { } /** - * Preprocess the nodes. + * Preprocess the pages. * * @param &$vars The template variables array. After invoking this function, * no page title will be displayed on /node/x pages. @@ -97,4 +97,7 @@ function flukso_preprocess_page(&$vars) { if (substr($_GET['q'], 0, 4) == 'node') { $vars['title'] = ''; } + + // -- tab text sould always be Flukso + $vars['head_title'] = 'Flukso'; }