diff options
author | Tobias Diekershoff <tobias.diekershoff@gmx.net> | 2011-01-15 08:55:19 +0100 |
---|---|---|
committer | Tobias Diekershoff <tobias.diekershoff@gmx.net> | 2011-01-15 08:55:19 +0100 |
commit | abf976bb36503268d810b7733407caaf3351dca2 (patch) | |
tree | c43dca8a4cff4aa84f4bedde03593968292d948a /boot.php | |
parent | a118f83ee23d9151157500737022db018e922a9f (diff) | |
parent | e7ae4ad3fa010e5f636738366aae81e129990fa7 (diff) | |
download | volse-hubzilla-abf976bb36503268d810b7733407caaf3351dca2.tar.gz volse-hubzilla-abf976bb36503268d810b7733407caaf3351dca2.tar.bz2 volse-hubzilla-abf976bb36503268d810b7733407caaf3351dca2.zip |
Merge branch 'master' of git://github.com/friendika/friendika
Diffstat (limited to 'boot.php')
-rw-r--r-- | boot.php | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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 )); } |