- Das die cssKomprimierung wieder aktiviert
modified: Makefile - Ein Makefile zum Upload einer VideoGalerie auf eine ftpServer modified: src/Makefiles/Makefile.ftpUpload - Starte "ohne Teilnahme" werden nicht mehr in der Gesamptanzahl berücksichtigt modified: wkParticipo/admin/showEvent.php modified: wkParticipo/showWkEvent.php
This commit is contained in:
@@ -169,10 +169,24 @@
|
||||
</li>
|
||||
<?php
|
||||
}
|
||||
|
||||
echo("<table>");
|
||||
echo("<tr><th>Name</th><th>Vorname</th><th>Masse</th><th>Platz</th><th>starterId</th><th>fahrtId</th></tr>");
|
||||
|
||||
foreach( $starterData as $starter ){
|
||||
if($starter['type'] != $typeKey) continue;
|
||||
echo("<tr>");
|
||||
$userData = getUserData($mysqli, $starter['userId']);
|
||||
echo("<td>".mb_convert_encoding($userData['name'], 'UTF-8', 'ISO-8859-1')."</td>");
|
||||
echo("<td>".mb_convert_encoding($userData['vorname'], 'UTF-8', 'ISO-8859-1')."</td>");
|
||||
echo("<td>".$starter['masse']."</td>");
|
||||
echo("<td>".$starter['platz']."</td>");
|
||||
echo("<td>".$starter['id']."</td>");
|
||||
echo("<td>".$starter['fahrtId']."</td>");
|
||||
echo("</tr>");
|
||||
}
|
||||
echo("</table>");
|
||||
}
|
||||
?>
|
||||
</ul>
|
||||
<?php
|
||||
}
|
||||
// $fahrtenData = array();
|
||||
// $fahrtenData = getFahrtenForEvent($mysqli, $eventData['id']);
|
||||
|
||||
Reference in New Issue
Block a user