X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=lib%2Fstream.php;h=64dbcbce3665da592b6a555e98a6de3a40d3821c;hb=5923f958c9afaaeedba9d41434cb3dbf53249a4e;hp=4001ca47bba5c8785d2fa91e3d681f1dbc93246f;hpb=e65bf0a25028d4aae4a8c6b33750aacaa4e182a8;p=quix0rs-gnu-social.git diff --git a/lib/stream.php b/lib/stream.php index 4001ca47bb..64dbcbce36 100644 --- a/lib/stream.php +++ b/lib/stream.php @@ -66,12 +66,7 @@ class StreamAction extends Action { function show_notice($notice) { global $config; $profile = $notice->getProfile(); - if (common_logged_in()) { - $user = common_current_user(); - $user_profile = $user->getProfile(); - } else { - $user_profile = false; - } + $user = common_current_user(); # XXX: RDFa common_element_start('li', array('class' => 'notice_single', @@ -126,13 +121,15 @@ class StreamAction extends Action { 'class' => 'replybutton')); common_raw('→'); common_element_end('a'); - common_element_end('p'); - if ($user_profile && $notice->profile_id == $user_profile->id) { + if ($user && $notice->profile_id == $user->id) { $deleteurl = common_local_url('deletenotice', array('notice' => $notice->id)); - common_element('a', array('class' => 'deletenotice', - 'href' => $deleteurl), - _('delete')); + common_element_start('a', array('class' => 'deletenotice', + 'href' => $deleteurl, + 'title' => _('delete'))); + common_raw('×'); + common_element_end('a'); } + common_element_end('p'); common_element_end('li'); }