We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 111e7ea commit fc3ce91Copy full SHA for fc3ce91
1 file changed
src/Model/Entity/TagAwareTrait.php
@@ -57,7 +57,8 @@ public function untag($tags = null)
57
58
foreach ($untags as $untag) {
59
foreach ($tags as $k => $tag) {
60
- if ((empty($untag[$pk]) || $tag[$pk] === $untag[$pk]) &&
+ if (
61
+ (empty($untag[$pk]) || $tag[$pk] === $untag[$pk]) &&
62
(empty($untag[$df]) || $tag[$df] === $untag[$df])
63
) {
64
unset($tags[$k]);
0 commit comments