Skip to content
Snippets Groups Projects
Commit 2f8a3b75 authored by Gregor Gawol's avatar Gregor Gawol
Browse files

fixed array bug

parent cc6421d4
Branches
Tags v0.0.3
No related merge requests found
Pipeline #3973 passed with stage
in 13 seconds
......@@ -159,7 +159,7 @@ class GetBoss extends \VuFind\AjaxHandler\AbstractBase
$isilCallNumber = $this->getISILCallNumber($results['data']);
$networks = isset($this->config->General->networks) ?
$this->config->General->networks : [];
$this->config->General->networks->toArray() : [];
$inArray = in_array($network, $networks);
$isbns = $driver->tryMethod('getISBNs');
$isbns = count($isbns) > 0 ? $isbns[0] : '';
......
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