Skip to content
This repository has been archived by the owner on Jul 22, 2022. It is now read-only.

Commit

Permalink
[Grand responsable] correction double validation Fix #407
Browse files Browse the repository at this point in the history
  • Loading branch information
wouldsmina authored May 20, 2017
1 parent 5244d60 commit 4888829
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion App/ProtoControllers/Responsable/Traitement/Conge.php
Original file line number Diff line number Diff line change
Expand Up @@ -507,7 +507,7 @@ protected function getIdDemandesGrandResponsable($gResp)
$sql = \includes\SQL::singleton();
$req = 'SELECT p_num AS id
FROM conges_periode
WHERE p_login IN (\'' . implode(',', $usersResp) . '\')
WHERE p_login IN (\'' . implode('\',\'', $usersResp) . '\')
AND p_etat = \''. \App\Models\Conge::STATUT_PREMIERE_VALIDATION .'\'';
$res = $sql->query($req);
while ($data = $res->fetch_array()) {
Expand Down

0 comments on commit 4888829

Please sign in to comment.