use a little X instead of "delete" for delete link, right after arrow

darcs-hash:20080730033804-84dde-1c747a7a6ee85f885926a42905b0b910fd1dec50.gz
This commit is contained in:
Evan Prodromou 2008-07-29 23:38:04 -04:00
parent e65bf0a250
commit c614a9d66e
1 changed files with 8 additions and 11 deletions

View File

@ -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');
}