diff options
author | zotlabs <mike@macgirvin.com> | 2017-03-05 14:47:20 -0800 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2017-03-05 14:47:20 -0800 |
commit | c533c62c640cf081c44bf0489680ee3be3e45ecb (patch) | |
tree | 7b23c066856ad4531652fc162f9527d556a6b19f /include/event.php | |
parent | 384db9d10dbded64e83564daa4c51dac05674a2b (diff) | |
download | volse-hubzilla-c533c62c640cf081c44bf0489680ee3be3e45ecb.tar.gz volse-hubzilla-c533c62c640cf081c44bf0489680ee3be3e45ecb.tar.bz2 volse-hubzilla-c533c62c640cf081c44bf0489680ee3be3e45ecb.zip |
some event work
Diffstat (limited to 'include/event.php')
-rw-r--r-- | include/event.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/event.php b/include/event.php index a9634d7a5..726eb667c 100644 --- a/include/event.php +++ b/include/event.php @@ -210,6 +210,10 @@ function format_event_bbcode($ev) { $o = ''; + if($ev['event_vdata']) { + $o .= '[event]' . $ev['event_vdata'] . '[/event]'; + } + if($ev['summary']) $o .= '[event-summary]' . $ev['summary'] . '[/event-summary]'; |