mirror of
https://github.com/flarum/core.git
synced 2025-07-18 23:31:17 +02:00
@@ -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));
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user