{
parent::prepare($args);
- $this->user = $this->auth_user;
- $this->profile = $this->auth_user->getProfile();
$this->notice_id = (int)$this->trimmed('id');
if (empty($notice_id)) {
return;
}
- if ($this->user->id == $this->notice->profile_id || $this->profile->hasRight(Right::DELETEOTHERSNOTICE)) {
- if (Event::handle('StartDeleteOwnNotice', array($this->user, $this->notice))) {
+ if ($this->scoped->sameAs($this->notice->getProfile()) || $this->scoped->hasRight(Right::DELETEOTHERSNOTICE)) {
+ if (Event::handle('StartDeleteOwnNotice', array($this->auth_user, $this->notice))) {
$this->notice->deleteAs($this->scoped);
- Event::handle('EndDeleteOwnNotice', array($this->user, $this->notice));
+ Event::handle('EndDeleteOwnNotice', array($this->auth_user, $this->notice));
}
$this->showNotice();
} else {