wrap use of repeated element in existence check
This commit is contained in:
parent
6ce8134471
commit
4f86e05d03
@ -1381,8 +1381,10 @@ class Notice extends Memcached_DataObject
|
||||
|
||||
if (!empty($this->repeat_of)) {
|
||||
$repeat = Notice::staticGet('id', $this->repeat_of);
|
||||
$ctx->forwardID = $repeat->uri;
|
||||
$ctx->forwardUrl = $repeat->bestUrl();
|
||||
if (!empty($repeat)) {
|
||||
$ctx->forwardID = $repeat->uri;
|
||||
$ctx->forwardUrl = $repeat->bestUrl();
|
||||
}
|
||||
}
|
||||
|
||||
$act->context = $ctx;
|
||||
|
Loading…
Reference in New Issue
Block a user