Skip to content
Snippets Groups Projects
Commit 3acc9689 authored by Dorian Merz's avatar Dorian Merz
Browse files

Merge branch 'master' into instance/fid

parents c07e8806 54f212fd
No related merge requests found
...@@ -1182,7 +1182,10 @@ class FincILS extends PAIA implements LoggerAwareInterface ...@@ -1182,7 +1182,10 @@ class FincILS extends PAIA implements LoggerAwareInterface
foreach ($identifier as $key => $value) { foreach ($identifier as $key => $value) {
$matches = []; $matches = [];
if (preg_match(sprintf($idPattern, $key), $itemId, $matches)) { if (preg_match(sprintf($idPattern, $key), $itemId, $matches)) {
return $this->getFincId($matches[3], $value); return $this->getFincId(
addcslashes($matches[3],':'),
$value
);
} }
} }
}; };
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment