Skip to content
Snippets Groups Projects
Commit 850a3178 authored by André Lahmann's avatar André Lahmann
Browse files

refs #8993:

* fixed php error in getAlternativeItemId()
parent f9dfcf60
No related merge requests found
...@@ -350,7 +350,8 @@ class FincILS extends PAIA implements LoggerAwareInterface ...@@ -350,7 +350,8 @@ class FincILS extends PAIA implements LoggerAwareInterface
*/ */
protected function getAlternativeItemId($id, $idType = null) protected function getAlternativeItemId($id, $idType = null)
{ {
return $this->_getFincId(end(explode(":", $id)), $idType); $array = explode(":", $id);
return $this->_getFincId(end($array), $idType);
} }
/** /**
......
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