If notice has been deleted before, don't store URI again
This commit is contained in:
parent
3bcfee906a
commit
320e73a321
|
@ -109,6 +109,11 @@ class Notice extends Memcached_DataObject
|
||||||
// @fixme we have some cases where things get re-run and so the
|
// @fixme we have some cases where things get re-run and so the
|
||||||
// insert fails.
|
// insert fails.
|
||||||
$deleted = Deleted_notice::staticGet('id', $this->id);
|
$deleted = Deleted_notice::staticGet('id', $this->id);
|
||||||
|
|
||||||
|
if (!$deleted) {
|
||||||
|
$deleted = Deleted_notice::staticGet('uri', $this->uri);
|
||||||
|
}
|
||||||
|
|
||||||
if (!$deleted) {
|
if (!$deleted) {
|
||||||
$deleted = new Deleted_notice();
|
$deleted = new Deleted_notice();
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user