1
0
mirror of https://gitlab.com/animath/si/plateforme.git synced 2025-06-25 09:40:31 +02:00

Correction d'un problème

This commit is contained in:
galaxyoyo
2019-09-08 01:47:30 +02:00
parent 228c683dc8
commit ca1a9e4415
2 changed files with 2 additions and 1 deletions

View File

@ -123,7 +123,7 @@ else {
<select style="width: 100%;" id="organizer" name="organizer[]" multiple size="4" required>
<?php
while (($orga_data = $orgas_response->fetch()) !== FALSE) {
echo "<option value=\"" . $orga_data["id"] . "\" " . ($tournament->organize($_SESSION["user_id"]) ? "selected" : "")
echo "<option value=\"" . $orga_data["id"] . "\" " . ($tournament->organize($orga_data["id"]) ? "selected" : "")
. ">" . $orga_data["first_name"] . " " . $orga_data["surname"] . "</option>\n";
}
?>