Correxiones sintaxis
This commit is contained in:
@@ -88,10 +88,10 @@
|
||||
<?php foreach ($usuarios as $u): ?>
|
||||
<tr>
|
||||
<td><?= $u['id_usuario'] ?></td>
|
||||
<td><?= htmlspecialchars(decrypt($u['nombre'])) ?></td>
|
||||
<td><?= htmlspecialchars(decrypt($u['email'])) ?></td>
|
||||
<td><?= htmlspecialchars($u['tipo_usuario']) ?></td>
|
||||
<td><?= htmlspecialchars($u['creado_por']) ?></td>
|
||||
<td><?= htmlspecialchars(decrypt($u['nombre'] ?? '')) ?></td>
|
||||
<td><?= htmlspecialchars(decrypt($u['email'] ?? '')) ?></td>
|
||||
<td><?= htmlspecialchars($u['tipo_usuario'] ?? '') ?></td>
|
||||
<td><?= htmlspecialchars(decrypt($u['nombre_creador'] ?? '')) ?></td>
|
||||
<td><?= isset($u['creado_en']) && $u['creado_en'] instanceof DateTime ? $u['creado_en']->format('Y-m-d H:i') : '' ?></td>
|
||||
<td>
|
||||
<?php if (isset($u['activo']) && $u['activo'] == 0): ?>
|
||||
|
||||
Reference in New Issue
Block a user