diff options
author | redmatrix <git@macgirvin.com> | 2016-02-18 15:24:58 -0800 |
---|---|---|
committer | redmatrix <git@macgirvin.com> | 2016-02-18 15:24:58 -0800 |
commit | 342fda94e4162634eeb67c18c1d284e7d78f217f (patch) | |
tree | 8171ce097a62ddf6de743a4ec25b2dd9ae3ccc41 /include/event.php | |
parent | c107bcfbd972a900cfd81b217014f7d4915fd73d (diff) | |
download | volse-hubzilla-342fda94e4162634eeb67c18c1d284e7d78f217f.tar.gz volse-hubzilla-342fda94e4162634eeb67c18c1d284e7d78f217f.tar.bz2 volse-hubzilla-342fda94e4162634eeb67c18c1d284e7d78f217f.zip |
Provide Zotlabs\Project and System class for querying details about the project/version info. Move these out of /boot.php
Diffstat (limited to 'include/event.php')
-rw-r--r-- | include/event.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/event.php b/include/event.php index 51988acac..73033a1c3 100644 --- a/include/event.php +++ b/include/event.php @@ -67,7 +67,7 @@ function ical_wrapper($ev) { $o .= "BEGIN:VCALENDAR"; $o .= "\r\nVERSION:2.0"; $o .= "\r\nMETHOD:PUBLISH"; - $o .= "\r\nPRODID:-//" . get_config('system','sitename') . "//" . get_platform_name() . "//" . strtoupper(get_app()->language). "\r\n"; + $o .= "\r\nPRODID:-//" . get_config('system','sitename') . "//" . Zotlabs\Project\System::get_platform_name() . "//" . strtoupper(get_app()->language). "\r\n"; if(array_key_exists('start', $ev)) $o .= format_event_ical($ev); else { |