diff options
author | Mario Vavti <mario@mariovavti.com> | 2018-01-09 10:27:26 +0100 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2018-01-09 10:27:26 +0100 |
commit | ef7225b4f68ce032184e73b4af7444c90d1109a5 (patch) | |
tree | f9c8b55df5c95cf6c338250990bd78ea4e575c87 /include/event.php | |
parent | 906cbbe45db42562c377df02e68c81677c99a6cc (diff) | |
parent | dfb75840b8b6fbe369f0b9097cd322832cc48108 (diff) | |
download | volse-hubzilla-ef7225b4f68ce032184e73b4af7444c90d1109a5.tar.gz volse-hubzilla-ef7225b4f68ce032184e73b4af7444c90d1109a5.tar.bz2 volse-hubzilla-ef7225b4f68ce032184e73b4af7444c90d1109a5.zip |
Merge remote-tracking branch 'mike/master' into dev
Diffstat (limited to 'include/event.php')
-rw-r--r-- | include/event.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/event.php b/include/event.php index 282c1a9d7..c1cf59425 100644 --- a/include/event.php +++ b/include/event.php @@ -6,6 +6,8 @@ use Sabre\VObject; +require_once('include/bbcode.php'); + /** * @brief Returns an event as HTML. * @@ -14,7 +16,6 @@ use Sabre\VObject; */ function format_event_html($ev) { - require_once('include/bbcode.php'); if(! ((is_array($ev)) && count($ev))) return ''; @@ -192,7 +193,7 @@ function format_todo_ical($ev) { function format_ical_text($s) { - require_once('include/bbcode.php'); + require_once('include/html2plain.php'); $s = html2plain(bbcode($s)); @@ -983,7 +984,6 @@ function event_store_item($arr, $event) { require_once('include/datetime.php'); require_once('include/items.php'); - require_once('include/bbcode.php'); $item = null; |