Removed bug in backend of users

This commit is contained in:
2019-04-17 15:04:40 +02:00
parent 22566986a8
commit b08b01689f
3 changed files with 6 additions and 4 deletions

View File

@@ -10,7 +10,8 @@ defined('_JEXEC') or die;
<table width='100%' class='table table-stiped, table-hover'>
<thead>
<tr>
<th width='30%'>Benutzername</th>
<th width='15%'>Benutzername</th>
<th width='20%'>Name</th>
<th width='30%'>Ort</th>
<th width='30%'>E-Mail</th>
<th width='5%'>L&ouml;schen?</th>
@@ -20,6 +21,7 @@ defined('_JEXEC') or die;
<?php foreach($this->users as $user): ?>
<?php $link = Route::_('index.php?option=com_clubs&view=user&id=' . $user->getId()); ?>
<tr>
<td><a href='<?php echo $link; ?>'><?php echo htmlentities($user->getUser()); ?></a></td>
<td><a href='<?php echo $link; ?>'><?php echo htmlentities($user->getName()); ?></a></td>
<td><?php echo htmlentities($user->getCity()); ?></td>
<td><a href='mailto:<?php echo htmlentities($user->getMail()); ?>'><?php echo htmlentities($user->getMail()); ?></a></td>