Skip to content
Snippets Groups Projects
Commit 8f1b5d0d authored by Dorian Merz's avatar Dorian Merz
Browse files

refs #14383

* bugfix in getBossLink
parent e48d25ca
No related merge requests found
...@@ -77,7 +77,7 @@ class InterlibraryLoanLink extends AbstractHelper ...@@ -77,7 +77,7 @@ class InterlibraryLoanLink extends AbstractHelper
$url .= "&join=OR"; $url .= "&join=OR";
$i = 0; $i = 0;
while ($i < count($signifiers)) { while ($i < count($signifiers)) {
$url .= "&type$i"."[]=ISN&lookfor$i"."[]=".preg_filter('/[^0-9]/','',$signifiers[$i]); $url .= "&type$i"."[]=ISN&lookfor$i"."[]=".preg_replace('/[^0-9]/','',$signifiers[$i]);
$i++; $i++;
} }
} }
......
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