mirror of
https://github.com/Deutscher-Tischfussballbund/com_sportsmanager.git
synced 2026-06-10 06:27:52 +00:00
feat: add required to firstname and lastname player fields
This commit is contained in:
@@ -1201,14 +1201,14 @@ class HTML_sportsmanager_admin
|
|||||||
<div class="uk-overflow-auto"><table class="uk-table" width="100%">
|
<div class="uk-overflow-auto"><table class="uk-table" width="100%">
|
||||||
<tr>
|
<tr>
|
||||||
<td nowrap width="20%" align="right">
|
<td nowrap width="20%" align="right">
|
||||||
<?php echo JText::_('COM_SPORTSMANAGER_LAST_NAME') ?>:
|
<?php echo JText::_('COM_SPORTSMANAGER_LAST_NAME') ?>*:
|
||||||
</td>
|
</td>
|
||||||
<td nowrap>
|
<td nowrap>
|
||||||
<?php
|
<?php
|
||||||
if (!$beschraenkter_zugriff)
|
if (!$beschraenkter_zugriff)
|
||||||
{
|
{
|
||||||
?>
|
?>
|
||||||
<input class="inputbox" type="text" name="nachname" size="50" maxlength="30"
|
<input class="inputbox" type="text" name="nachname" size="50" maxlength="30" required
|
||||||
value="<?php if ($row != null) if ($row->nachname != null) echo htmlentities_utf8($row->nachname); ?>"/>
|
value="<?php if ($row != null) if ($row->nachname != null) echo htmlentities_utf8($row->nachname); ?>"/>
|
||||||
<?php
|
<?php
|
||||||
}
|
}
|
||||||
@@ -1220,14 +1220,14 @@ class HTML_sportsmanager_admin
|
|||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td nowrap width="20%" align="right">
|
<td nowrap width="20%" align="right">
|
||||||
<?php echo JText::_('COM_SPORTSMANAGER_FIRST_NAME') ?>:
|
<?php echo JText::_('COM_SPORTSMANAGER_FIRST_NAME') ?>*:
|
||||||
</td>
|
</td>
|
||||||
<td nowrap>
|
<td nowrap>
|
||||||
<?php
|
<?php
|
||||||
if (!$beschraenkter_zugriff)
|
if (!$beschraenkter_zugriff)
|
||||||
{
|
{
|
||||||
?>
|
?>
|
||||||
<input class="inputbox" type="text" name="vorname" size="50" maxlength="30"
|
<input class="inputbox" type="text" name="vorname" size="50" maxlength="30" required
|
||||||
value="<?php if ($row != null) echo htmlentities_utf8($row->vorname); ?>"/>
|
value="<?php if ($row != null) echo htmlentities_utf8($row->vorname); ?>"/>
|
||||||
<?php
|
<?php
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user