web: tab text should always show Flukso

This commit is contained in:
Bart Van Der Meerssche 2009-09-10 09:23:40 +00:00
parent c94e08acfe
commit ef3224a7df
1 changed files with 4 additions and 1 deletions

View File

@ -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';
}