CHANGE_ error in live : GWM

This commit is contained in:
Gowtham M 2024-12-05 12:33:56 +05:30
parent 813df2a8af
commit ee33bbf48a

View File

@ -1839,7 +1839,7 @@ class EmployeeRestController extends AdminController
else if($key == 'childrens'){ $text = ["child"]; }
else if($key == 'parents-in-law'){ $text = ["parent_in_law"];}
else if($key ==='either-parents-pil') { $text = ["parent", "parent_in_law"];}
else{ $text = $key; }
else{ $text = [$key]; }
$whereArray = array_merge($whereArray, $text);
}
}
@ -1893,7 +1893,7 @@ class EmployeeRestController extends AdminController
else if($key == 'childrens'){ $text = ["child"]; }
else if($key == 'parents-in-law'){ $text = ["parent_in_law"];}
else if($key ==='either-parents-pil') { $text = ["parent", "parent_in_law"];}
else{ $text = $key; }
else{ $text = [$key]; }
$whereArray = array_merge($whereArray, $text);
}
}