Skip to content
Snippets Groups Projects
Commit c8b71444 authored by Gregor Gawol's avatar Gregor Gawol Committed by Sebastian Kehr
Browse files

refs #16628 [fid] remove empty box

* if ai record remove empty notice box
parent 399004e3
No related merge requests found
......@@ -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;
}
}
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