Removed nowrap comments

This commit is contained in:
Tim
2025-06-30 14:55:04 +00:00
parent 7d1fae417d
commit e0d0f0f1c1
@@ -37,7 +37,7 @@ static function aktuelleBegegnungenHeader($titel, $beschreibung, $ticker_anzeige
<div class="uk-overflow-auto">
<table class="uk-table contentpaneopen<?php echo $params->get('pageclass_sfx'); ?>">
<tr>
<td> <?php // removed nowrap ?>
<td>
<label for="pin"><?php echo Text::_('COM_SPORTSMANAGER_TEAM_PIN'); ?>:</label>
<input class="inputbox" type="password" id="pin" name="pin" size="10" maxlength="20"
value=""/>
@@ -239,7 +239,7 @@ static function tabelleHeader($veranstaltung): void
<div class="uk-overflow-auto">
<table class="uk-table contentpaneopen<?php echo $params->get('pageclass_sfx'); ?>">
<tr>
<td style="width: 100%;" class="contentheading<?php echo $params->get('pageclass_sfx'); ?>"> <?php // removed nowrap ?>
<td style="width: 100%;" class="contentheading<?php echo $params->get('pageclass_sfx'); ?>">
<?php
echo htmlentities_utf8($veranstaltung->bezeichnung);
$bild = bildHTML("mannschaftswettbewerbe/logo", $veranstaltung->veranstaltung_id, 0, 0, 0, 0, 'class="uk-responsive-height" style="max-height: 50px; vertical-align:bottom" border="0" hspace="8"');
@@ -267,7 +267,7 @@ static function administrationFooter(): void
<table style="width: 100%; border-collapse: collapse;">
<tr>
<td style="text-align: left; border: none; padding: 0"
class="sectiontableentry2<?php echo $params->get('pageclass_sfx'); ?>"> <?php // removed nowrap ?>
class="sectiontableentry2<?php echo $params->get('pageclass_sfx'); ?>">
<a
href="<?php echo SportsManagerURL('&task=admin_uebersicht'); ?>"><?php echo Text::_('COM_SPORTSMANAGER_ADMINISTRATION'); ?></a>
</td>
@@ -297,7 +297,7 @@ static function turniereHeader($beschreibung, $saisons, $filter_saison_id): void
<div class="uk-overflow-auto">
<table class="uk-table contentpaneopen<?php echo $params->get('pageclass_sfx'); ?>">
<tr>
<td> <?php // removed nowrap ?>
<td>
<label for="filter_saison_id"><?php echo Text::_('COM_SPORTSMANAGER_SEASON'); ?>:</label>
<select class="uk-select uk-form-width-medium" name="filter_saison_id" id="filter_saison_id"
size="1" onChange="document.adminForm.submit();">
@@ -329,7 +329,7 @@ static function disziplinHeader($disziplin): void
<div class="uk-overflow-auto">
<table class="uk-table contentpaneopen<?php echo $params->get('pageclass_sfx'); ?>">
<tr>
<td style="width: 100%" class="contentheading<?php echo $params->get('pageclass_sfx'); ?>"> <?php // removed nowrap ?>
<td style="width: 100%" class="contentheading<?php echo $params->get('pageclass_sfx'); ?>">
<a id="id<?php echo $disziplin->turnierdisziplin_id; ?>"></a>
<?php echo htmlentities_utf8($disziplin->disziplin); ?>
</td>
@@ -341,18 +341,18 @@ static function disziplinHeader($disziplin): void
<table
class="uk-table uk-table-shrink uk-table-middle contentpaneopen<?php echo $params->get('pageclass_sfx'); ?>">
<tr>
<td> <?php // removed nowrap ?>
<td>
<strong><?php echo Text::_('COM_SPORTSMANAGER_START'); ?>:</strong>
</td>
<td> <?php // removed nowrap ?>
<td>
<?php echo FormatiertesDatum($disziplin->beginn); ?><?php echo Text::_('COM_SPORTSMANAGER_HOUR'); ?>
</td>
</tr>
<tr>
<td> <?php // removed nowrap ?>
<td>
<strong><?php echo Text::_('COM_SPORTSMANAGER_MESSAGES'); ?>:</strong>
</td>
<td> <?php // removed nowrap ?>
<td>
<?php echo $disziplin->teilnehmer; ?>
</td>
</tr>
@@ -400,7 +400,7 @@ static function turniere($turniere): void
?>
<tr class="sectiontableentry<?php echo $k + 1;
$k = ($k + 1) % 2; ?><?php echo $params->get('pageclass_sfx'); ?>">
<td> <?php // removed nowrap ?>
<td>
<a id="id<?php echo $turnier->turnier_id; ?>"></a><a
href="<?php echo SportsManagerURL('&task=turnierdisziplinen&turnierid=' . $turnier->turnier_id); ?>"><?php echo htmlentities_utf8(NichtLeererString(FormatierterTermin($turnier->erster_tag, $turnier->letzter_tag, true))); ?></a>
</td>
@@ -710,7 +710,7 @@ static function turnierdisziplin($turnier, $disziplin, $meldungen, $meldungenSpi
<table class="uk-table contentpaneopen<?php echo $params->get('pageclass_sfx'); ?>">
<tr>
<td class="contentheading<?php echo $params->get('pageclass_sfx'); ?>"
style="width: 100%"><?php echo rundenstufe($rundenstufe); ?></td> <?php // removed nowrap ?>
style="width: 100%"><?php echo rundenstufe($rundenstufe); ?></td>
</tr>
</table>
</div>
@@ -943,7 +943,7 @@ static function turnierdisziplin($turnier, $disziplin, $meldungen, $meldungenSpi
<?php
if ($ergebnis_detailliert_anzeigen) {
?>
<td style="text-align: center"> <?php // removed nowrap ?>
<td style="text-align: center">
<?php if (!empty($spiel->ergebnis_detailliert)) echo str_replace(" ", "&nbsp;|&nbsp;", $spiel->ergebnis == 1 ? $spiel->ergebnis_detailliert : runden_detailliert_invers($spiel->ergebnis_detailliert)); ?></td>
<?php
}