aboutsummaryrefslogtreecommitdiffstats
path: root/boot.php
diff options
context:
space:
mode:
authorroot <root@diekershoff.homeunix.net>2011-01-15 08:54:41 +0100
committerroot <root@diekershoff.homeunix.net>2011-01-15 08:54:41 +0100
commit3323f256c35ceb30a4b2ac1984a2eded672eb33f (patch)
tree7b074e621e57be7d8f33eec8a281d5dd0bc3ab65 /boot.php
parent30551b24ec833ef58e98071e56cb3bb94f302dd3 (diff)
parente7ae4ad3fa010e5f636738366aae81e129990fa7 (diff)
downloadvolse-hubzilla-3323f256c35ceb30a4b2ac1984a2eded672eb33f.tar.gz
volse-hubzilla-3323f256c35ceb30a4b2ac1984a2eded672eb33f.tar.bz2
volse-hubzilla-3323f256c35ceb30a4b2ac1984a2eded672eb33f.zip
Merge branch 'master' of git://github.com/friendika/friendika
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 7e71a38d9..9715f9cfd 100644
--- a/boot.php
+++ b/boot.php
@@ -3,6 +3,7 @@
set_time_limit(0);
define ( 'BUILD_ID', 1031 );
+define ( 'FRIENDIKA_VERSION', '2.01.1000' );
define ( 'DFRN_PROTOCOL_VERSION', '2.0' );
define ( 'EOL', "<br />\r\n" );
@@ -311,7 +312,8 @@ class App {
$this->page['title'] = $this->config['sitename'];
$tpl = load_view_file("view/head.tpl");
$this->page['htmlhead'] = replace_macros($tpl,array(
- '$baseurl' => $this->get_baseurl() . '/'
+ '$baseurl' => $this->get_baseurl() . '/',
+ '$generator' => 'Friendika' . ' ' . FRIENDIKA_VERSION
));
}