mirror of
https://github.com/flarum/framework.git
synced 2025-02-21 06:24:53 +08:00
parent
ac04b6ada5
commit
57bb2e17b5
@ -108,7 +108,7 @@ class Discussion extends AbstractModel
|
||||
// PostWasDeleted event for each post.
|
||||
$posts = $discussion->posts()->allTypes();
|
||||
|
||||
foreach ($posts->get() as $post) {
|
||||
foreach ($posts->cursor() as $post) {
|
||||
$discussion->raise(new PostDeleted($post));
|
||||
}
|
||||
|
||||
|
@ -134,7 +134,7 @@ class User extends AbstractModel
|
||||
// PostWasDeleted event for each post.
|
||||
$posts = $user->posts()->allTypes();
|
||||
|
||||
foreach ($posts->get() as $post) {
|
||||
foreach ($posts->cursor() as $post) {
|
||||
$user->raise(new PostDeleted($post));
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user