Parent Directory
|
Revision Log
|
Revision Graph
initial checkin
| 1 | <?php |
| 2 | |
| 3 | function _phptemplate_variables($hook, $vars = array()) { |
| 4 | |
| 5 | if ($hook == 'page') { |
| 6 | if (module_exists('title_rewrite')) { |
| 7 | $current = isset($vars['head_title']) ? $vars['head_title'] : NULL; |
| 8 | $vars['head_title'] = title_rewrite_page_get_title($current, $vars['node']); |
| 9 | } |
| 10 | } |
| 11 | |
| 12 | return $vars; |
| 13 | } |
| ViewVC Help | |
| Powered by ViewVC 1.1.2 |