Correction selection formation SETTINGS
This commit is contained in:
parent
946d87dfe7
commit
5bf45d32d1
|
@ -51,7 +51,7 @@ APIClass.prototype = {
|
|||
if( ptrAPI.xhr[i].readyState == 4 ){ // si la requête est terminée
|
||||
|
||||
/* DEBUG : affiche la réponse BRUTE de API.php */
|
||||
console.log('API.php => '+ptrAPI.xhr[i].responseText);
|
||||
// console.log('API.php => '+ptrAPI.xhr[i].responseText);
|
||||
console.log( JSON.parse(ptrAPI.xhr[i].responseText) );
|
||||
|
||||
/* si success de requête */
|
||||
|
|
|
@ -106,9 +106,9 @@ if( permission('admin') ){
|
|||
// si la formation optionnelle n'est pas définie ou incohérente, on le fait (première valeur trouvée)
|
||||
if( $formationOpt == null || !in_array($formationOpt, $verificationUIDFormations) )
|
||||
if( count($verificationUIDFormations) == 0 ) // si aucune formation trouvée
|
||||
$MyModulesFormationOpt = 0;
|
||||
$formationOpt = 0;
|
||||
else
|
||||
$MyModulesFormationOpt = $verificationUIDFormations[0];
|
||||
$formationOpt = $verificationUIDFormations[0];
|
||||
|
||||
|
||||
/**************************/
|
||||
|
|
Loading…
Reference in New Issue