- 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:
marko
2018-11-12 09:29:37 +01:00
parent 2b7ab02db4
commit 93f4371093
4 changed files with 32 additions and 13 deletions

View File

@@ -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']);