diff --git a/module/fid/src/View/Helper/Root/GetIt.php b/module/fid/src/View/Helper/Root/GetIt.php index 72a9f34a53dfe18167133ba836e8f331a73ddefb..aee1bc4139d749fbad1c5d9841e4eb60a32fa827 100644 --- a/module/fid/src/View/Helper/Root/GetIt.php +++ b/module/fid/src/View/Helper/Root/GetIt.php @@ -432,7 +432,17 @@ class GetIt extends AbstractHelper ) { return false; } + } elseif (in_array($this->sid, $this->_getSourceIds('source_idsV3'))) { + return false; } return true; } + + public function isAISIDRecord() + { + if (in_array($this->sid, $this->_getSourceIds('source_idsV3'))) { + return true; + } + return false; + } }