forked from GNUsocial/gnu-social
use 410 Gone for deleted notices
This commit is contained in:
parent
b6f816c785
commit
0982c7a154
@ -84,7 +84,13 @@ class ShownoticeAction extends OwnerDesignAction
|
|||||||
$this->notice = Notice::staticGet($id);
|
$this->notice = Notice::staticGet($id);
|
||||||
|
|
||||||
if (empty($this->notice)) {
|
if (empty($this->notice)) {
|
||||||
|
// Did we used to have it, and it got deleted?
|
||||||
|
$deleted = Deleted_notice::staticGet($id);
|
||||||
|
if (!empty($deleted)) {
|
||||||
|
$this->clientError(_('Notice deleted.'), 410);
|
||||||
|
} else {
|
||||||
$this->clientError(_('No such notice.'), 404);
|
$this->clientError(_('No such notice.'), 404);
|
||||||
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user