Falsche Versionsnr in script.php. Style von Formular Export Spielberichte optimiert.

This commit is contained in:
Jürgen Meyer
2025-06-12 10:50:57 +02:00
parent a922b11b6d
commit feb08ff903
2 changed files with 43 additions and 46 deletions
@@ -10013,19 +10013,18 @@ class HTML_sportsmanager_admin
{
global $params;
?>
<div class="componentheading<?php echo $params->get('pageclass_sfx'); ?>"><?php echo Text::_('COM_SPORTSMANAGER_EXPORT'); ?></div>
<form action="<?php echo SportsManagerURL(); ?>" method="post" name="adminForm" id="adminForm">
<div class="uk-overflow-auto"><table class="" style="width: 100%">
<div class="uk-overflow-auto">
<table class="" style="width: 500px">
<tr>
<td nowrap style="width: 60%; vertical-align: top">
<div class="uk-overflow-auto"><table class="" style="width: 100%">
<th align=center colspan='2'><?php echo Text::_('COM_SPORTSMANAGER_EXPORT'); ?></th>
</tr>
<tr>
<td nowrap style="width: 20%; text-align: right">
<td nowrap style="width: 120px; text-align: right">
<label for="veranstaltungId">Veranstaltung</label>
</td>
<td nowrap>
<select class="uk-select uk-form-width-medium" name="veranstaltungid" size="1">
<select class="uk-select uk-form-width-large" style='width: 320px;' name="veranstaltungid" size="1">
<option value='<?PHP echo $veranstaltung->veranstaltung_id; ?>'><?PHP echo $veranstaltung->bezeichnung; ?></option>
<?PHP foreach ($saison AS $key => $value) { ?>
<option value='<?PHP echo $value->veranstaltung_id; ?>'><?PHP echo $value->bezeichnung; ?></option>
@@ -10034,11 +10033,11 @@ class HTML_sportsmanager_admin
</td>
</tr>
<tr>
<td nowrap style="width: 20%; text-align: right">
<td nowrap style="text-align: right">
<label for="export">Exportieren</label>
</td>
<td nowrap>
<select class="uk-select uk-form-width-medium" name="export" id="export" size="1">
<select class="uk-select uk-form-width-large" style='width: 320px;' name="export" id="export" size="1">
<option value='spieler'>Spieler</option>
<option value='spielplan'>Spielplan</option>
<option value='spielberichte'>Spielberichte</option>
@@ -10046,19 +10045,17 @@ class HTML_sportsmanager_admin
</td>
</tr>
<tr>
<td nowrap style="width: 20%; text-align: right">
<td nowrap style="text-align: right">
<label for="exportformat">Exportformat</label>
</td>
<td nowrap>
<select class="uk-select uk-form-width-medium" name="exportformat" id="exportformat" size="1">
<select class="uk-select uk-form-width-large" style='width: 320px;' name="exportformat" id="exportformat" size="1">
<option value='csvdatei'>CSV-Datei</option>
</select>
</td>
</tr>
</table></div>
</td>
</tr>
</table></div>
</table>
</div>
<input type="submit" name="save" value="<?php echo Text::_('COM_SPORTSMANAGER_EXPORT'); ?>"
class="button"/>
+1 -1
View File
@@ -1110,7 +1110,7 @@ return new class () implements InstallerScriptInterface
$db->setQuery( $query );
if (!$db->execute()) { die($db->stderr(true)); }
$query = "INSERT IGNORE #__sportsmanager_einstellungen SET name = 'datenbank_version', wert = '102';";
$query = "INSERT IGNORE #__sportsmanager_einstellungen SET name = 'datenbank_version', wert = '103';";
$db->setQuery( $query );
if (!$db->execute()) { die($db->stderr(true)); }