diff options
author | Friendika <info@friendika.com> | 2011-05-28 00:42:01 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-05-28 00:42:01 -0700 |
commit | 4e8a97f30a585eb707081a9216f840eb443a8764 (patch) | |
tree | ca7979c8ce7abbc4dd171dd8121f38628e93bdd5 /include/event.php | |
parent | b0c383a6d0464c997203aa4da9bfc3c0417e54cf (diff) | |
download | volse-hubzilla-4e8a97f30a585eb707081a9216f840eb443a8764.tar.gz volse-hubzilla-4e8a97f30a585eb707081a9216f840eb443a8764.tar.bz2 volse-hubzilla-4e8a97f30a585eb707081a9216f840eb443a8764.zip |
bug #38 posts and photos only visible to friends if so configured
Diffstat (limited to 'include/event.php')
-rw-r--r-- | include/event.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/event.php b/include/event.php index d7071bd1f..06239b2ab 100644 --- a/include/event.php +++ b/include/event.php @@ -14,14 +14,14 @@ function format_event_html($ev) { . datetime_convert('UTC','UTC',$ev['start'], ATOM_TIME) . '" >' . datetime_convert('UTC', date_default_timezone_get(), - $ev['start'] /*, format /*) + $ev['start'] /*, format */ ) . '</abbr></p>'; $o .= '<p>' . t('Ends: ') . '<abbr class="dtend" title="' . datetime_convert('UTC','UTC',$ev['finish'], ATOM_TIME) . '" >' . datetime_convert('UTC', date_default_timezone_get(), - $ev['finish'] /*, format /*) + $ev['finish'] /*, format */ ) . '</abbr></p>'; $o .= '<p> ' . t('Location:') . '<span class="location">' |