Skip to content
Snippets Groups Projects
Commit 9eb38b0c authored by Greeshma's avatar Greeshma
Browse files

modified if condition

parent 02980cb4
No related branches found
No related tags found
No related merge requests found
......@@ -85,8 +85,8 @@ class Vtiger_ModuleMeta_Model extends Vtiger_Base_Model {
$accessibleFields = $this->getAccessibleFields($this->moduleName);
$mergableFields = array();
foreach($accessibleFields as $fieldName => $fieldInstance) {
if($fieldInstance->getPresence() === 1) {
continue;
if($fieldInstance->getPresence() == 1) {
continue;
}
// We need to avoid Last Modified by or any such User reference field
// for now as Query Generator is not handling it well enough.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment