full theming support

This commit is contained in:
Mike Macgirvin
2010-08-16 05:23:26 -07:00
parent 4bcf380296
commit 30e3a65c0f
10 changed files with 58 additions and 18 deletions

View File

@@ -131,7 +131,9 @@ class App {
function init_pagehead() {
if(file_exists("view/head.tpl"))
$s = file_get_contents("view/head.tpl");
$this->page['htmlhead'] = replace_macros($s,array('$baseurl' => $this->get_baseurl()));
$this->page['htmlhead'] = replace_macros($s,array(
'$baseurl' => $this->get_baseurl()
));
}
}}