mirror of
https://github.com/Deutscher-Tischfussballbund/com_sportsmanager.git
synced 2026-06-10 14:37:52 +00:00
Fehler bei Begegnung hinzufügen gefixt.
This commit is contained in:
@@ -10325,14 +10325,14 @@ class HTML_sportsmanager_admin
|
||||
:</label>
|
||||
</td>
|
||||
<td nowrap>
|
||||
<?php if ($neuer_eintrag) {$row->spiel_nr = "";} ?>
|
||||
<?php $spiel_nr = $neuer_eintrag ? null : ($row->spiel_nr ?? null); ?>
|
||||
<select class="uk-select uk-form-width-xsmall" id="game_nr" size="1"
|
||||
title="Spielnummer (optional)" name="spiel_nr">
|
||||
<option value=""></option>
|
||||
<?php
|
||||
for ($i = 1; $i <= 99; $i++)
|
||||
{
|
||||
echo "<option value=\"" . $i . "\"" . ($row->spiel_nr == $i ? " selected" : "") . ">" . $i . "</option>";
|
||||
echo "<option value=\"" . $i . "\"" . ($spiel_nr == $i ? " selected" : "") . ">" . $i . "</option>";
|
||||
}
|
||||
?>
|
||||
</select>
|
||||
|
||||
Reference in New Issue
Block a user