Ranglistenübersicht Anpassungen Header

This commit is contained in:
Daniel Goerlich
2021-01-16 23:01:41 +01:00
parent d64fbae5cd
commit 76931df1a5
@@ -5711,7 +5711,7 @@ global $params;
class="componentheading<?php echo $params->get('pageclass_sfx'); ?>"><?php echo htmlentities_utf8($titel); ?></div><?php } class="componentheading<?php echo $params->get('pageclass_sfx'); ?>"><?php echo htmlentities_utf8($titel); ?></div><?php }
if (!empty($beschreibung)) { if (!empty($beschreibung)) {
?> ?>
<table class="contentpaneopen<?php echo $params->get('pageclass_sfx'); ?>"> <table class="uk-table uk-table-responsive contentpaneopen<?php echo $params->get('pageclass_sfx'); ?>">
<tr> <tr>
<td><?php echo strpos($beschreibung, ">") !== false ? $beschreibung : htmlentities_utf8($beschreibung); ?></td> <td><?php echo strpos($beschreibung, ">") !== false ? $beschreibung : htmlentities_utf8($beschreibung); ?></td>
</tr> </tr>
@@ -5721,11 +5721,11 @@ global $params;
if (count($saisons) > 0) { if (count($saisons) > 0) {
?> ?>
<form action="<?php echo SportsManagerURL(); ?>" method="post" name="adminForm" id="adminForm"> <form action="<?php echo SportsManagerURL(); ?>" method="post" name="adminForm" id="adminForm">
<table class="contentpaneopen<?php echo $params->get('pageclass_sfx'); ?>"> <table class="uk-table uk-table-responsive contentpaneopen<?php echo $params->get('pageclass_sfx'); ?>">
<tr> <tr>
<td nowrap> <td nowrap>
<?php echo JText::_('COM_SPORTSMANAGER_SEASON'); ?>: <?php echo JText::_('COM_SPORTSMANAGER_SEASON'); ?>:
<select name="filter_saison_id" size="1" onChange="document.adminForm.submit();"> <select class="uk-select uk-form-width-medium" name="filter_saison_id" size="1" onChange="document.adminForm.submit();">
<?php <?php
foreach ($saisons as $saison) foreach ($saisons as $saison)
echo "<option value=\"" . $saison->saison_id . "\" " . ($filter_saison_id == $saison->saison_id ? "selected" : "") . ">" . htmlentities_utf8($saison->saisonbezeichnung) . "</option>"; echo "<option value=\"" . $saison->saison_id . "\" " . ($filter_saison_id == $saison->saison_id ? "selected" : "") . ">" . htmlentities_utf8($saison->saisonbezeichnung) . "</option>";