Skip to content
Snippets Groups Projects
Commit b6bd62db authored by Oliver Goldschmidt's avatar Oliver Goldschmidt
Browse files

corrects check for existence of ilslink

parent 23647e8e
No related merge requests found
...@@ -190,7 +190,9 @@ class DAIA extends AbstractBase implements ...@@ -190,7 +190,9 @@ class DAIA extends AbstractBase implements
*/ */
public function getHoldLink($id, $details) public function getHoldLink($id, $details)
{ {
return ($details['ilslink'] != '') ? $details['ilslink'] : null; return (isset($details['ilslink']) && $details['ilslink'] != '')
? $details['ilslink']
: null;
} }
/** /**
......
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