mirror of
https://github.com/Deutscher-Tischfussballbund/com_sportsmanager.git
synced 2026-06-10 14:37: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%">
|
||||
<tr>
|
||||
<td nowrap width="20%" align="right">
|
||||
<?php echo JText::_('COM_SPORTSMANAGER_LAST_NAME') ?>:
|
||||
<?php echo JText::_('COM_SPORTSMANAGER_LAST_NAME') ?>*:
|
||||
</td>
|
||||
<td nowrap>
|
||||
<?php
|
||||
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); ?>"/>
|
||||
<?php
|
||||
}
|
||||
@@ -1220,14 +1220,14 @@ class HTML_sportsmanager_admin
|
||||
</tr>
|
||||
<tr>
|
||||
<td nowrap width="20%" align="right">
|
||||
<?php echo JText::_('COM_SPORTSMANAGER_FIRST_NAME') ?>:
|
||||
<?php echo JText::_('COM_SPORTSMANAGER_FIRST_NAME') ?>*:
|
||||
</td>
|
||||
<td nowrap>
|
||||
<?php
|
||||
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); ?>"/>
|
||||
<?php
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user