diff options
author | Evan Prodromou <evan@status.net> | 2009-11-07 22:26:03 -0500 |
---|---|---|
committer | Evan Prodromou <evan@status.net> | 2009-11-07 22:26:03 -0500 |
commit | 1de9496c7fed16c2675c3d5136c131c07534c2cc (patch) | |
tree | 236b7a61e9f69b5b93f0ede8d867d037173e3d8f /lib | |
parent | 38833af6f18ae48caed0cc7939803c89e3104ef9 (diff) |
fix constant for deleteothersnotice
Diffstat (limited to 'lib')
-rw-r--r-- | lib/noticelist.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/noticelist.php b/lib/noticelist.php index 8b3015cc3..bf12bb73c 100644 --- a/lib/noticelist.php +++ b/lib/noticelist.php @@ -513,7 +513,7 @@ class NoticeListItem extends Widget $user = common_current_user(); if (!empty($user) && - ($this->notice->profile_id == $user->id || $user->hasRight(Right::deleteOthersNotice))) { + ($this->notice->profile_id == $user->id || $user->hasRight(Right::DELETEOTHERSNOTICE))) { $deleteurl = common_local_url('deletenotice', array('notice' => $this->notice->id)); |