FIX oubli d'un '</tr>' dans tx_inscrits.php
authorgburri <gburri@4c3d3983-c6fa-4c6c-9935-18c3bbef1bf0>
Fri, 7 Nov 2008 23:59:41 +0000 (23:59 +0000)
committergburri <gburri@4c3d3983-c6fa-4c6c-9935-18c3bbef1bf0>
Fri, 7 Nov 2008 23:59:41 +0000 (23:59 +0000)
git-svn-id: svn://localhost/cl7/trunk@16 4c3d3983-c6fa-4c6c-9935-18c3bbef1bf0

php/tx_inscrits.php

index b394d76..b5df9b2 100644 (file)
@@ -30,7 +30,7 @@ while($participant = mysql_fetch_object($participants))
 {  
    if ($clan_courant !== $participant->clan_nom)
    {
-      echo ($participant->clan_nom != '' ? '<tr><td colspan="'. ($nb_periode + 4) .'"><h1>'.traitement_pre_affichage($participant->clan_nom).'</h1></td>' : ''), $debut_table;
+      echo ($participant->clan_nom != '' ? '<tr><td colspan="'. ($nb_periode + 4) .'"><h1>'.traitement_pre_affichage($participant->clan_nom).'</h1></td></tr>' : ''), $debut_table;
       $clan_courant = $participant->clan_nom;
    }
    
@@ -41,14 +41,14 @@ while($participant = mysql_fetch_object($participants))
    ");
    
    echo '<tr>';
-       echo '<td>', htmlentities($participant->clan_tag, ENT_QUOTES, "UTF-8"), traitement_pre_affichage($participant->pseudo), '</td>';
-       echo '<td>', traitement_pre_affichage($participant->nom), '</td>';
-       echo '<td>', traitement_pre_affichage($participant->prenom), '</td>';
+   echo '<td>', htmlentities($participant->clan_tag, ENT_QUOTES, "UTF-8"), traitement_pre_affichage($participant->pseudo), '</td>';
+   echo '<td>', traitement_pre_affichage($participant->nom), '</td>';
+   echo '<td>', traitement_pre_affichage($participant->prenom), '</td>';
    while ($participation = mysql_fetch_object($participations))
-      echo '<td '.($participation->participant_id == $participant->id ? 'class="participe"' : '').'></td>';
+     echo '<td '.($participation->participant_id == $participant->id ? 'class="participe"' : '').'></td>';
    
-       echo '<td>', traitement_pre_affichage($participant->remarques), '</td>';
-       echo '</tr>';
+   echo '<td>', traitement_pre_affichage($participant->remarques), '</td>';
+   echo '</tr>';
 }
 echo '</table>';
 ?>