Skip to content
Snippets Groups Projects
Commit 697e27e8 authored by André Lahmann's avatar André Lahmann Committed by Robert Lange
Browse files

refs #22989 [finc] codestyle fix

parent 03acb3af
No related merge requests found
......@@ -331,14 +331,10 @@ class FincLibero extends FincILS implements TranslatorAwareInterface
// custom DAIA field
$result_item['doc_id'] = $doc_id;
if (
$isTitleHold
&&
(
!isset($this->noTitleHoldStatuses)
if ($isTitleHold
&& ( !isset($this->noTitleHoldStatuses)
|| empty($this->noTitleHoldStatuses)
|| !in_array($item['localIlsStatus'], $this->noTitleHoldStatuses)
)
|| !in_array($item['localIlsStatus'], $this->noTitleHoldStatuses))
) {
// this is a titleHold and we show TitleHoldLink
$result_item['item_id'] = $titleHoldId;
......
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