[DDC-2128] Fix PR according to comments.
This commit is contained in:
parent
93c018668d
commit
9a3cf77919
1 changed files with 5 additions and 2 deletions
|
@ -76,9 +76,12 @@ class MetadataFilter extends \FilterIterator implements \Countable
|
||||||
$metadata = $it->current();
|
$metadata = $it->current();
|
||||||
|
|
||||||
foreach ($this->filter as $filter) {
|
foreach ($this->filter as $filter) {
|
||||||
$pregResult = preg_match("/" . preg_quote($filter) . "/", $metadata->name);
|
$pregResult = preg_match("/$filter/", $metadata->name);
|
||||||
|
|
||||||
if ($pregResult === false) {
|
if ($pregResult === false) {
|
||||||
return false;
|
throw new \RuntimeException(
|
||||||
|
sprintf("Error while evaluating regex '/%s/'.", $filter)
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($pregResult === 0) {
|
if ($pregResult === 0) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue