diff options
author | redmatrix <git@macgirvin.com> | 2016-05-20 22:52:47 -0700 |
---|---|---|
committer | redmatrix <git@macgirvin.com> | 2016-05-20 22:52:47 -0700 |
commit | d8ace38041ad3ef161cf9c727c94b6ce2a00ce75 (patch) | |
tree | 80326bb033ded557c846cecafba3882459f20906 /include/event.php | |
parent | bc20cf9fa3479be20417f78187f7302f13fbf0ec (diff) | |
download | volse-hubzilla-d8ace38041ad3ef161cf9c727c94b6ce2a00ce75.tar.gz volse-hubzilla-d8ace38041ad3ef161cf9c727c94b6ce2a00ce75.tar.bz2 volse-hubzilla-d8ace38041ad3ef161cf9c727c94b6ce2a00ce75.zip |
rework the conversation object stuff at a high level - still needs a bit of refactoring
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 e41bf2db7..29ca5bb79 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') . "//" . Zotlabs\Project\System::get_platform_name() . "//" . strtoupper(App::$language). "\r\n"; + $o .= "\r\nPRODID:-//" . get_config('system','sitename') . "//" . Zotlabs\Lib\System::get_platform_name() . "//" . strtoupper(App::$language). "\r\n"; if(array_key_exists('start', $ev)) $o .= format_event_ical($ev); else { |