// voir
     } else {
         exit('Erreur : droit attribué sur la sélection n°' . $selection_id . ' non trouvé !');
     }
     $DB_ROW = DB_STRUCTURE_SELECTION_ITEM::DB_recuperer_prorietaire_identite($selection_id);
     $proprietaire_genre = $DB_ROW['user_genre'];
     $proprietaire_nom = $DB_ROW['user_nom'];
     $proprietaire_prenom = $DB_ROW['user_prenom'];
 } else {
     exit('Erreur : vous n\'êtes ni propriétaire ni bénéficiaire de droits sur la sélection n°' . $selection_id . ' !');
 }
 $proprietaire_identite = $proprietaire_nom . ' ' . $proprietaire_prenom;
 // Mettre à jour l'enregistrement
 DB_STRUCTURE_SELECTION_ITEM::DB_modifier($selection_id, $selection_nom, $tab_items);
 // Mofifier les affectations des items choisis
 $tab_retour = DB_STRUCTURE_SELECTION_ITEM::DB_modifier_liaison_item($selection_id, $tab_items, 'substituer');
 // sacoche_jointure_selection_prof ; à restreindre en cas de modification d'une sélection dont on n'est pas le propriétaire
 if ($proprio_id == $_SESSION['USER_ID']) {
     if ($nb_profs) {
         // Mofifier les affectations des profs choisis
         $tab_retour = DB_STRUCTURE_SELECTION_ITEM::DB_modifier_liaison_prof($selection_id, $tab_profs, 'substituer');
     } else {
         // Au cas où on aurait retiré les droits à tous
         DB_STRUCTURE_SELECTION_ITEM::DB_supprimer_liaison_prof($selection_id);
     }
 }
 // Afficher le retour
 $items_texte = $nb_items > 1 ? $nb_items . ' items' : '1 item';
 $profs_nombre = $nb_profs ? $nb_profs + 1 . ' collègues' : 'non';
 $profs_bulle = $nb_profs && $nb_profs < 10 ? ' <img alt="" src="./_img/bulle_aide.png" width="16" height="16" class="bulle_profs" />' : '';
 echo '<td>' . html($selection_nom) . '</td>';