1
0
mirror of https://github.com/flarum/core.git synced 2025-10-18 18:26:07 +02:00

Use cursor() fetching when deleting many posts

Refs #1319.
This commit is contained in:
Franz Liedke
2018-01-21 21:53:24 +01:00
parent 072f4f89cb
commit fa14be591c
2 changed files with 2 additions and 2 deletions

View File

@@ -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));
}