Correction settings quand aucune formation + getCurrentYear utilisation de la session

This commit is contained in:
xdrm-brackets 2016-01-07 21:32:00 +01:00
parent b0983bb5fc
commit a572d13c8a
4 changed files with 7 additions and 4 deletions

View File

@ -961,7 +961,7 @@ if( permission('master') || permission('admin') ){
/* [2] Importation
==========================================*/
$currentYear = getCurrentYear();
$currentYear = $_SESSION['annee'];
// si annéeOpt n'est pas définie, on le fait
if( $anneeOpt == null || $anneeOpt < $currentYear || $anneeOpt > $currentYear+5 ) $anneeOpt = $currentYear;
$anneeOpt = intval($anneeOpt); // on met l'année en (int)

View File

@ -655,7 +655,7 @@ if( permission('master') || permission('admin') ){
/* [2] Importation
==========================================*/
$currentYear = getCurrentYear();
$currentYear = $_SESSION['annee'];
// si annéeOpt n'est pas définie, on le fait
if( $anneeOpt == null || $anneeOpt < $currentYear ) $anneeOpt = $currentYear;

View File

@ -605,7 +605,7 @@ if( permission('master') || permission('admin') ){
/* [2] Importation
==========================================*/
$currentYear = getCurrentYear();
$currentYear = $_SESSION['annee'];
// si annéeOpt n'est pas définie, on le fait
if( $anneeOpt == null || $anneeOpt < $currentYear || $anneeOpt > $currentYear+5 ) $anneeOpt = $currentYear;
$anneeOpt = intval($anneeOpt); // on met l'année en (int)

View File

@ -105,7 +105,10 @@ 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) )
$formationOpt = $verificationUIDFormations[0];
if( count($verificationUIDFormations) == 0 ) // si aucune formation trouvée
$MyModulesFormationOpt = 0;
else
$MyModulesFormationOpt = $verificationUIDFormations[0];
/**************************/