[x] Corrections delNumeric(*, true);

This commit is contained in:
xdrm-brackets 2016-01-03 11:58:11 +01:00
parent 4c3d629edb
commit c087f7cadf
1 changed files with 2 additions and 2 deletions

View File

@ -191,7 +191,7 @@ class noteRepo{
ORDER BY g.nom ASC");
$getNoteList->execute(array( ':controle' => $controle, ':groupe' => $groupe ));
return DataBase::delNumeric( $getNoteList->fetch(), true );
return $getNoteList->fetch();
}
@ -247,7 +247,7 @@ class noteRepo{
GROUP BY mcc_m.id_mcc_module");
$getMoyenneModule->execute(array( ':etudiant' => $etudiant, ':module' => $module, ':semestre' => $semestre ));
return DataBase::delNumeric( $getMoyenneModule->fetch(), true );
return $getMoyenneModule->fetch();
}