diff options
author | Mario Vavti <mario@mariovavti.com> | 2015-05-15 20:33:38 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2015-05-15 20:33:38 +0200 |
commit | ed284fd4ea6e3069e59be94d40e600da93794693 (patch) | |
tree | f1e7ca6eb5416d4af2bdd1103adee81c33fc4090 | |
parent | 51b6d709965faa104b02fe148dbe8cf407ff47fa (diff) | |
download | volse-hubzilla-ed284fd4ea6e3069e59be94d40e600da93794693.tar.gz volse-hubzilla-ed284fd4ea6e3069e59be94d40e600da93794693.tar.bz2 volse-hubzilla-ed284fd4ea6e3069e59be94d40e600da93794693.zip |
preserve htmlhead in case somebody needs it
-rwxr-xr-x | boot.php | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -2139,7 +2139,9 @@ function construct_page(&$a) { } // And a couple of convenience macros - + if(strpos($v, '$htmlhead') !== false) { + $v = str_replace('$htmlhead', $a->page['htmlhead'], $v); + } if(strpos($v, '$nav') !== false) { $v = str_replace('$nav', $a->page['nav'], $v); } |