diff --git a/old_adminstuds.php b/old_adminstuds.php
deleted file mode 100644
index 46a8b8e..0000000
--- a/old_adminstuds.php
+++ /dev/null
@@ -1,131 +0,0 @@
- two modifications (comment, title, description, ...) on differents polls in the same session will generate only one mail.
-$email_admin = $poll->admin_mail;
-$poll_title = $poll->title;
-$smtp_allowed = $config['use_smtp'];
-function send_mail_admin() {
- global $email_admin;
- global $poll_title;
- global $admin_poll_id;
- global $smtp_allowed;
- if($smtp_allowed==true){
- if(!isset($_SESSION['mail_admin_sent'])) {
- Utils::sendEmail( $email_admin,
- _("[ADMINISTRATOR] New settings for your poll") . ' ' . stripslashes( $poll_title ),
- _("You have changed the settings of your poll. \nYou can modify this poll with this link") .
- " :\n\n" . Utils::getUrlSondage($admin_poll_id, true) . "\n\n" .
- _("Thanks for your confidence.") . "\n" . NOMAPPLICATION
- );
- $_SESSION["mail_admin_sent"]=true;
- }
- }
-
-}
-
-
-$nbcolonnes = count($sujets);
-$nblignes = count($users);
-
-//si il n'y a pas suppression alors on peut afficher normalement le tableau
-
-
-
-//action quand on ajoute une colonne au format AUTRE
-if (isset($_POST["ajoutercolonne"]) && !empty($_POST['nouvellecolonne']) && $poll->format == "A") {
- $nouveauxsujets=$dsujet->sujet;
-
- //on rajoute la valeur a la fin de tous les sujets deja entrés
- $nouveauxsujets.=",";
- $nouveauxsujets.=str_replace(","," ",$_POST["nouvellecolonne"]);
- $nouveauxsujets = htmlentities(html_entity_decode($nouveauxsujets, ENT_QUOTES, 'UTF-8'), ENT_QUOTES, 'UTF-8');
-
- //mise a jour avec les nouveaux sujets dans la base
- $sql = 'UPDATE sujet_studs SET sujet = '.$connect->Param('nouveauxsujets').' WHERE id_sondage = '.$connect->Param('numsondage');
- $sql = $connect->Prepare($sql);
- if ($connect->Execute($sql, array($nouveauxsujets, $poll_id))) {
- send_mail_admin();
- }
-}
-
-
-//on teste pour voir si une ligne doit etre modifiée
-$testmodifier = false;
-$testligneamodifier = false;
-
-
-
-// Button in the first td to avoid remove col on "Return" keypress)
-$tr_add_remove_col = '
';
-
-$border = array(); // bordure pour distinguer les mois
-$td_headers = array(); // for a11y, headers="M1 D4 H5" on each td
-$radio_title = array(); // date for
-
-if ($poll->format == "A") {
- $tr_subjects = '
'."\n";
-
-//affichage de la description du sondage
-if ($dsondage->comment) {
- $commentaires = $dsondage->comment;
- $commentaires=nl2br(str_replace("\\","",$comment));
- echo '
-
-
'._("Description") .'
-
'. $commentaires .'
-
';
-}
-echo '
-
-
'."\n"; // .jumbotron
-
-//On récupere les données et les sujets du sondage
-$nblignes = count($users);
-
-//on teste pour voir si une ligne doit etre modifiée
-$testmodifier = false;
-$ligneamodifier = -1;
-for ($i=0;$i<$nblignes;$i++) {
- if (isset($_POST["modifierligne$i"])) {
- $ligneamodifier = $i;
- }
-
- //test pour voir si une ligne est a modifier
- if (isset($_POST['validermodifier'.$i])) {
- $modifier = $i;
- $testmodifier = true;
- }
-}
-
-//si le test est valide alors on affiche des checkbox pour entrer de nouvelles valeurs
-if ($testmodifier) {
- $nouveauchoix = '';
- for ($i=0;$i<$nbcolonnes;$i++) {
- // radio checked 1 = Yes, 2 = Ifneedbe, 0 = No
- if (isset($_POST["choix$i"])) {
- switch ($_POST["choix$i"]) {
- case 1: $nouveauchoix .= "1";break;
- case 2: $nouveauchoix .= "2";break;
- default: $nouveauchoix .= "0";break;
- }
- }
- }
-
- $compteur=0;
- while ($data = $user_studs->FetchNextObject(false) ) {
- //mise a jour des données de l'utilisateur dans la base SQL
- if ($compteur == $modifier) {
- $sql = 'UPDATE user_studs SET reponses='.$connect->Param('nouveauchoix').' WHERE nom='.$connect->Param('nom').' AND id_users='.$connect->Param('id_users');
- $sql = $connect->Prepare($sql);
- $connect->Execute($sql, array($nouveauchoix, $data->nom, $data->id_users));
-
- if ($dsondage->mailsonde=="yes") {
- Utils::sendEmail( "$dsondage->mail_admin", "[".NOMAPPLICATION."] " . _("Poll's participation") . " : ".html_entity_decode($dsondage->title, ENT_QUOTES, 'UTF-8'), "\"".html_entity_decode($data->nom, ENT_QUOTES, 'UTF-8')."\""."" . _("has filled a line.\nYou can find your poll at the link") . " :\n\n" . Utils::getUrlSondage($numsondage) . " \n\n" . _("Thanks for your confidence.") . "\n".NOMAPPLICATION );
- }
- }
- $compteur++;
- }
-}
-
-// Table headers
-$thead = '';
-
-// Button in the first td to avoid remove col on "Return" keypress)
-$border = array(); // bordure pour distinguer les mois
-$td_headers = array(); // for a11y, headers="M1 D4 H5" on each td
-$radio_title = array(); // date for
-
-// Dates poll
-if ($dsondage->format === 'D') {
-
- $tr_months = '