This commit is contained in:
James Cole
2018-08-17 05:54:29 +02:00
parent 3ca3ce0726
commit 219a0cd612
4 changed files with 17 additions and 3 deletions

View File

@@ -213,6 +213,12 @@ class ReportFormRequest extends Request
$tag = $repository->findByTag($tagTag);
if (null !== $tag) {
$collection->push($tag);
continue;
}
$tag = $repository->findNull((int)$tagTag);
if (null !== $tag) {
$collection->push($tag);
continue;
}
}
}