aboutsummaryrefslogtreecommitdiffstats
path: root/include/event.php
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2011-06-09 20:02:48 -0700
committerFriendika <info@friendika.com>2011-06-09 20:02:48 -0700
commit8aaf55c1e6216f1221569e7087bcdd1000124d5f (patch)
tree6e09c94da422824f37d5058c68046bb60e841a4d /include/event.php
parent67021c132a4cc6de1fe76aa8faab7bfc37e58423 (diff)
downloadvolse-hubzilla-8aaf55c1e6216f1221569e7087bcdd1000124d5f.tar.gz
volse-hubzilla-8aaf55c1e6216f1221569e7087bcdd1000124d5f.tar.bz2
volse-hubzilla-8aaf55c1e6216f1221569e7087bcdd1000124d5f.zip
event item
Diffstat (limited to 'include/event.php')
-rw-r--r--include/event.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/event.php b/include/event.php
index 31cf536ff..86a822080 100644
--- a/include/event.php
+++ b/include/event.php
@@ -1,7 +1,7 @@
<?php
-function format_event_html($ev,$pre = '') {
+function format_event_html($ev) {
require_once('include/bbcode.php');
@@ -115,7 +115,7 @@ function format_event_bbcode($ev) {
if($ev['start'])
$o .= '[event-start]' . $ev['start'] . '[/event-start]';
- if($ev['start'])
+ if(($ev['finish']) && (! $ev['nofinish']))
$o .= '[event-finish]' . $ev['finish'] . '[/event-finish]';
if($ev['location'])
@@ -158,7 +158,7 @@ function bbtoevent($s) {
if(preg_match("/\[event\-adjust\](.*?)\[\/event\-adjust\]/is",$s,$match))
$ev['adjust'] = $match[1];
$match = '';
-
+ $ev['nofinish'] = (($ev['start'] && (! $ev['finish'])) ? 1 : 0);
return $ev;
}