diff options
author | Friendika <info@friendika.com> | 2011-03-29 15:27:14 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-03-29 15:27:14 -0700 |
commit | e1fd2ecb16a212c56567ac5c5910d2a2d9754b47 (patch) | |
tree | 88f6a4f84828010e6f27cdda5b332ed1c5b6010a /boot.php | |
parent | 97ae3814d9fd48f0922744223a690092181bbacb (diff) | |
download | volse-hubzilla-e1fd2ecb16a212c56567ac5c5910d2a2d9754b47.tar.gz volse-hubzilla-e1fd2ecb16a212c56567ac5c5910d2a2d9754b47.tar.bz2 volse-hubzilla-e1fd2ecb16a212c56567ac5c5910d2a2d9754b47.zip |
another template
Diffstat (limited to 'boot.php')
-rw-r--r-- | boot.php | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -352,10 +352,12 @@ class App { function init_pagehead() { $this->page['title'] = $this->config['sitename']; - $tpl = load_view_file("view/head.tpl"); + $tpl = load_view_file('view/head.tpl'); $this->page['htmlhead'] = replace_macros($tpl,array( '$baseurl' => $this->get_baseurl() . '/', - '$generator' => 'Friendika' . ' ' . FRIENDIKA_VERSION + '$generator' => 'Friendika' . ' ' . FRIENDIKA_VERSION, + '$delitem' => t('Delete this item?'), + '$comment' => t('Comment') )); } |