aboutsummaryrefslogtreecommitdiffstats
path: root/boot.php
diff options
context:
space:
mode:
authorFabio Comuni <fabrix.xm@gmail.com>2011-03-30 16:05:43 +0200
committerFabio Comuni <fabrix.xm@gmail.com>2011-03-30 16:05:43 +0200
commit9acccb2b90ff5276c0cc84b3b006c7a393c53786 (patch)
tree073576560eaa6e00266c3e85a5e76df6e1dca032 /boot.php
parent05d9035aaa55c3b38fcb15d799644e3c5eda5f11 (diff)
parent18da7efa27fcff8fb2b3b679938954e712427de9 (diff)
downloadvolse-hubzilla-9acccb2b90ff5276c0cc84b3b006c7a393c53786.tar.gz
volse-hubzilla-9acccb2b90ff5276c0cc84b3b006c7a393c53786.tar.bz2
volse-hubzilla-9acccb2b90ff5276c0cc84b3b006c7a393c53786.zip
Merge remote-tracking branch 'friendika-master/master'
Diffstat (limited to 'boot.php')
-rw-r--r--boot.php8
1 files changed, 5 insertions, 3 deletions
diff --git a/boot.php b/boot.php
index f12ec0d8d..3b5da170c 100644
--- a/boot.php
+++ b/boot.php
@@ -2,7 +2,7 @@
set_time_limit(0);
-define ( 'FRIENDIKA_VERSION', '2.1.932' );
+define ( 'FRIENDIKA_VERSION', '2.1.933' );
define ( 'DFRN_PROTOCOL_VERSION', '2.1' );
define ( 'DB_UPDATE_VERSION', 1045 );
@@ -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')
));
}