Repeats keep the same scope as parent
This commit is contained in:
parent
32145484c2
commit
31fd4dbe3b
|
@ -1588,8 +1588,13 @@ class Notice extends Memcached_DataObject
|
||||||
$content = mb_substr($content, 0, $maxlen - 4) . ' ...';
|
$content = mb_substr($content, 0, $maxlen - 4) . ' ...';
|
||||||
}
|
}
|
||||||
|
|
||||||
return self::saveNew($repeater_id, $content, $source,
|
// Scope is same as this one's
|
||||||
array('repeat_of' => $this->id));
|
|
||||||
|
return self::saveNew($repeater_id,
|
||||||
|
$content,
|
||||||
|
$source,
|
||||||
|
array('repeat_of' => $this->id,
|
||||||
|
'scope' => $this->scope));
|
||||||
}
|
}
|
||||||
|
|
||||||
// These are supposed to be in chron order!
|
// These are supposed to be in chron order!
|
||||||
|
|
Loading…
Reference in New Issue
Block a user