diff options
author | friendica <info@friendica.com> | 2011-11-25 22:41:50 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2011-11-25 22:41:50 -0800 |
commit | 0f4a42f550b5bc863cec7c7a3fca26a028599dcc (patch) | |
tree | f86801eac577e77ee654d9b0365037a4b558f500 /mod/events.php | |
parent | 6b93324c11439e739bfe32e0be6ddd07f72ea294 (diff) | |
download | volse-hubzilla-0f4a42f550b5bc863cec7c7a3fca26a028599dcc.tar.gz volse-hubzilla-0f4a42f550b5bc863cec7c7a3fca26a028599dcc.tar.bz2 volse-hubzilla-0f4a42f550b5bc863cec7c7a3fca26a028599dcc.zip |
start on bug #227 - more to do
Diffstat (limited to 'mod/events.php')
-rw-r--r-- | mod/events.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mod/events.php b/mod/events.php index fb68d53db..660a92df0 100644 --- a/mod/events.php +++ b/mod/events.php @@ -228,6 +228,9 @@ function events_content(&$a) { if($d !== $last_date) $o .= '<hr /><a name="link-' . $j . '" ><div class="event-list-date">' . $d . '</div></a>'; $last_date = $d; + if($rr['author-name']) { + $o .= '<a href="' . $rr['author-link'] . '" ><img src="' . $rr['author-avatar'] . '" height="32" width="32" />' . $rr['author-name'] . '</a>'; + } $o .= format_event_html($rr); $o .= ((! $rr['cid']) ? '<a href="' . $a->get_baseurl() . '/events/event/' . $rr['id'] . '" title="' . t('Edit event') . '" class="edit-event-link icon pencil"></a>' : ''); if($rr['plink']) |