aboutsummaryrefslogtreecommitdiffstats
path: root/include/event.php
diff options
context:
space:
mode:
authorredmatrix <redmatrix@redmatrix.me>2015-05-13 16:01:00 -0700
committerredmatrix <redmatrix@redmatrix.me>2015-05-13 16:01:00 -0700
commitd6f98e651170827453a27fec367f0f8059f3a002 (patch)
tree5c982bbde9812fe747648a5890c4be3a3c70a487 /include/event.php
parentc3c202d650506ea3ed3ba9bdb92aae0b065d5e47 (diff)
downloadvolse-hubzilla-d6f98e651170827453a27fec367f0f8059f3a002.tar.gz
volse-hubzilla-d6f98e651170827453a27fec367f0f8059f3a002.tar.bz2
volse-hubzilla-d6f98e651170827453a27fec367f0f8059f3a002.zip
product was a bad string to use because we may require it for e-commerce, and RED_PLATFORM is equally problematic for other reasons.
Diffstat (limited to 'include/event.php')
-rw-r--r--include/event.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/event.php b/include/event.php
index 5926b50f7..0b1e56ae2 100644
--- a/include/event.php
+++ b/include/event.php
@@ -62,7 +62,7 @@ function ical_wrapper($ev) {
$o .= "BEGIN:VCALENDAR";
$o .= "\nVERSION:2.0";
$o .= "\nMETHOD:PUBLISH";
- $o .= "\nPRODID:-//" . get_config('system','sitename') . "//" . RED_PLATFORM . "//" . strtoupper(get_app()->language). "\n";
+ $o .= "\nPRODID:-//" . get_config('system','sitename') . "//" . PLATFORM_NAME . "//" . strtoupper(get_app()->language). "\n";
if(array_key_exists('start', $ev))
$o .= format_event_ical($ev);
else {