Skip to content
This repository has been archived by the owner on Jan 25, 2021. It is now read-only.

Commit

Permalink
prevent entry in error.log
Browse files Browse the repository at this point in the history
  • Loading branch information
edelm committed Jan 28, 2020
1 parent 9e1a5d9 commit bb6635d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion module/Swissbib/src/Swissbib/RecordDriver/SolrMarc.php
Original file line number Diff line number Diff line change
Expand Up @@ -2330,7 +2330,9 @@ public function getInstitutions($extended = false)
if (!array_key_exists($F[0], $konkordanzTabelle949)) {
$konkordanzTabelle949[$F[0]] = [];
}
array_push($konkordanzTabelle949[$F[0]], $b[0]);
if (isset($b[0])) {
array_push($konkordanzTabelle949[$F[0]], $b[0]);
}
}
}
foreach ($institutions as $key => $institution) {
Expand Down

0 comments on commit bb6635d

Please sign in to comment.