aboutsummaryrefslogtreecommitdiffstats
path: root/boot.php
diff options
context:
space:
mode:
authorMike Macgirvin <mike@macgirvin.com>2010-08-16 05:23:26 -0700
committerMike Macgirvin <mike@macgirvin.com>2010-08-16 05:23:26 -0700
commit30e3a65c0f15f2cbcc538b35c18b1f60490fda9b (patch)
tree5f702db316822d065442ba0e3983272deab861ac /boot.php
parent4bcf38029656fa3ad2e1914f531491ef90320c23 (diff)
downloadvolse-hubzilla-30e3a65c0f15f2cbcc538b35c18b1f60490fda9b.tar.gz
volse-hubzilla-30e3a65c0f15f2cbcc538b35c18b1f60490fda9b.tar.bz2
volse-hubzilla-30e3a65c0f15f2cbcc538b35c18b1f60490fda9b.zip
full theming support
Diffstat (limited to 'boot.php')
-rw-r--r--boot.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/boot.php b/boot.php
index 75ea5346e..7754ad1f4 100644
--- a/boot.php
+++ b/boot.php
@@ -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()
+ ));
}
}}