From 7be59dbeabd8d14e613b3d3631320d58eb0e79fa Mon Sep 17 00:00:00 2001 From: Michael Date: Tue, 6 Feb 2018 16:32:00 +0000 Subject: [PATCH] Priority and capitalisation --- src/Model/Item.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Model/Item.php b/src/Model/Item.php index 88efb6aa64..cc42aafc61 100644 --- a/src/Model/Item.php +++ b/src/Model/Item.php @@ -178,7 +178,7 @@ class Item extends BaseObject // If it's the parent of a comment thread, kill all the kids if ($item['id'] == $item['parent']) { - self::delete(['parent' => $item['parent']]); + self::delete(['parent' => $item['parent']], $priority); } // send the notification upstream/downstream @@ -1683,7 +1683,7 @@ class Item extends BaseObject continue; } - self::deleteByID($item['id'], PRIORITY_LOW); + self::deleteById($item['id'], PRIORITY_LOW); } } -- 2.39.5