Clean up of delete links when not logged in
darcs-hash:20080720094954-533db-1096bf464e37a9c380afc15ac1b33b1f2f43cf91.gz
This commit is contained in:
parent
92e90ee636
commit
91a3cb84cd
|
@ -63,10 +63,12 @@ class StreamAction extends Action {
|
||||||
function show_notice($notice) {
|
function show_notice($notice) {
|
||||||
global $config;
|
global $config;
|
||||||
$profile = $notice->getProfile();
|
$profile = $notice->getProfile();
|
||||||
if (common_logged_in()) {
|
if (common_logged_in()) {
|
||||||
$user = common_current_user();
|
$user = common_current_user();
|
||||||
$user_profile = $user->getProfile();
|
$user_profile = $user->getProfile();
|
||||||
}
|
} else {
|
||||||
|
$user_profile = false;
|
||||||
|
}
|
||||||
|
|
||||||
# XXX: RDFa
|
# XXX: RDFa
|
||||||
common_element_start('li', array('class' => 'notice_single',
|
common_element_start('li', array('class' => 'notice_single',
|
||||||
|
@ -118,12 +120,12 @@ class StreamAction extends Action {
|
||||||
common_raw('→');
|
common_raw('→');
|
||||||
common_element_end('a');
|
common_element_end('a');
|
||||||
common_element_end('p');
|
common_element_end('p');
|
||||||
if ($notice->profile_id == $user_profile->id) {
|
if ($user_profile && $notice->profile_id == $user_profile->id) {
|
||||||
$deleteurl = common_local_url('deletenotice', array('notice' => $notice->id));
|
$deleteurl = common_local_url('deletenotice', array('notice' => $notice->id));
|
||||||
common_element('a', array('class' => 'deletenotice',
|
common_element('a', array('class' => 'deletenotice',
|
||||||
'href' => $deleteurl),
|
'href' => $deleteurl),
|
||||||
_('delete'));
|
_('delete'));
|
||||||
}
|
}
|
||||||
common_element_end('li');
|
common_element_end('li');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user