Explorar el Código

-Employee : Fix vérification manager

Théo LECOQ hace 2 años
padre
commit
2b702d5720
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      plugin/employee/action.php

+ 1 - 1
plugin/employee/action.php

@@ -147,7 +147,7 @@
 		if(!empty($_['job']) && is_numeric($_['job'])) $item->job = $_['job'];
 		$item->jobDescription = $_['jobDescription'];
 		if(!empty($_['statute']) && is_numeric($_['statute'])) $item->statute = $_['statute'];
-		$item->manager = $_['manager'];
+		if(!empty($_['manager']) && is_numeric($_['manager'])) $item->manager = $_['manager'];
 		$item->workplace = $_['workplace'];
 		if(!empty($_['account'])) $item->account = $_['account'];
 		if(isset($_['hardware'])) $item->hardware = json_encode($_['hardware']);