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

refs #16396 * fixed bug that user network always lower

parent 65778983
Branches issue/26470
Tags
No related merge requests found
Pipeline #4261 passed with stage
in 14 seconds
...@@ -162,6 +162,7 @@ class GetBoss extends \VuFind\AjaxHandler\AbstractBase ...@@ -162,6 +162,7 @@ class GetBoss extends \VuFind\AjaxHandler\AbstractBase
$this->config->General->networks->toArray() : []; $this->config->General->networks->toArray() : [];
$addNetworks = isset($this->config->General->addNetworks) ? $addNetworks = isset($this->config->General->addNetworks) ?
$this->config->General->addNetworks->toArray() : []; $this->config->General->addNetworks->toArray() : [];
$network = strtolower($network);
$inArray = in_array($network, $networks); $inArray = in_array($network, $networks);
$zdbId = $driver->tryMethod('getZdbId'); $zdbId = $driver->tryMethod('getZdbId');
$isbns = $driver->tryMethod('getISBNs'); $isbns = $driver->tryMethod('getISBNs');
......
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