Skip to content
Snippets Groups Projects
Commit ef5b23ba authored by Demian Katz's avatar Demian Katz
Browse files

Merge pull request #615 from olli-gold/master

corrects check for existence of ilslink
parents 23647e8e b6bd62db
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