mirror of
https://github.com/Deutscher-Tischfussballbund/com_sportsmanager.git
synced 2026-06-10 06:27:52 +00:00
Fehler bei Export korrigiert.
This commit is contained in:
@@ -6424,15 +6424,6 @@ function adminEditOrdnungsstrafe(): void
|
||||
if (!benutzerZugriff("benutzerVeranstalterModerator"))
|
||||
keinZugriff(true);
|
||||
|
||||
if (empty($filter['saison']))
|
||||
$filter['saison'] = $saisons[0]->saison_id;
|
||||
if (!isset($filter['verein']))
|
||||
$filter['verein'] = 0;
|
||||
if (!isset($filter['veranstaltung']))
|
||||
$filter['veranstaltung'] = 0;
|
||||
if (!isset($filter['aussteller']))
|
||||
$filter['aussteller'] = 0;
|
||||
|
||||
$query = "SELECT t1.ordnungsstrafen_id AS ID, t3.begegnung_id AS Spiel_ID, t7.bezeichnung AS Liga,"
|
||||
. "\n t3.spieltag AS Spieltag, t9.vereinsname AS Verein, t2.verstoss AS Verstoss, t8.name AS Aussteller,"
|
||||
. "\n (t1.multiplikator * t2.gebuehr + t2.zusatzgebuehr) AS Gebuehr,"
|
||||
|
||||
@@ -6944,8 +6944,10 @@ class HTML_sportsmanager_admin
|
||||
?>
|
||||
</select>
|
||||
<?php if (benutzerZugriff("benutzerVeranstalterModerator")){ ?>
|
||||
<input type="submit" name="exportieren" value="<?php echo Text::_('COM_SPORTSMANAGER_EXPORT'); ?>"
|
||||
class="button" onclick="this.form.task.value='admin_ordnungsstrafen_export';" />
|
||||
<input type="submit" value="<?php echo Text::_('COM_SPORTSMANAGER_EXPORT'); ?>" class="button"
|
||||
onclick="const t = this.form.task;
|
||||
t.value = 'admin_ordnungsstrafen_export';
|
||||
setTimeout(() => { t.value = 'admin_ordnungsstrafen'; }, 100); // 2)"/>
|
||||
<?php } ?>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
Reference in New Issue
Block a user