aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Module/Cal.php
diff options
context:
space:
mode:
authorzotlabs <mike@macgirvin.com>2016-12-19 16:06:49 -0800
committerzotlabs <mike@macgirvin.com>2016-12-19 16:06:49 -0800
commit231b70b987bb76a27cc8c4a36b128b4fef2178ce (patch)
tree3b22d937f34ef66acedaabc2f6366bbcbc0ada37 /Zotlabs/Module/Cal.php
parent1798ebd39524354a6955e871ce231c908f5bd0cc (diff)
downloadvolse-hubzilla-231b70b987bb76a27cc8c4a36b128b4fef2178ce.tar.gz
volse-hubzilla-231b70b987bb76a27cc8c4a36b128b4fef2178ce.tar.bz2
volse-hubzilla-231b70b987bb76a27cc8c4a36b128b4fef2178ce.zip
call zidify_links() when formatting bbcode for internal consumption
Diffstat (limited to 'Zotlabs/Module/Cal.php')
-rw-r--r--Zotlabs/Module/Cal.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/Zotlabs/Module/Cal.php b/Zotlabs/Module/Cal.php
index 1279a51b1..b982d19a8 100644
--- a/Zotlabs/Module/Cal.php
+++ b/Zotlabs/Module/Cal.php
@@ -292,8 +292,8 @@ class Cal extends \Zotlabs\Web\Controller {
$title = strip_tags(html_entity_decode($title,ENT_QUOTES,'UTF-8'));
}
$html = format_event_html($rr);
- $rr['desc'] = bbcode($rr['desc']);
- $rr['location'] = bbcode($rr['location']);
+ $rr['desc'] = zidify_links(smilies(bbcode($rr['desc'])));
+ $rr['location'] = zidify_links(smilies(bbcode($rr['location'])));
$events[] = array(
'id'=>$rr['id'],
'hash' => $rr['event_hash'],