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

refs #22989 [finc] codestyle fix

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