web: tab text should always show Flukso
This commit is contained in:
parent
c94e08acfe
commit
ef3224a7df
|
@ -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,
|
* @param &$vars The template variables array. After invoking this function,
|
||||||
* no page title will be displayed on /node/x pages.
|
* 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') {
|
if (substr($_GET['q'], 0, 4) == 'node') {
|
||||||
$vars['title'] = '';
|
$vars['title'] = '';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// -- tab text sould always be Flukso
|
||||||
|
$vars['head_title'] = 'Flukso';
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue