Files
gallery3/modules/gallery/views/user_profile_info.html.php
Johan Cwiklinski 6746792bdf Drop short_tags
2018-05-19 17:01:37 +02:00

10 lines
259 B
PHP

<?php defined("SYSPATH") or die("No direct script access.") ?>
<table>
<?php foreach ($user_profile_data as $label => $value): ?>
<tr>
<th><?= html::clean($label) ?></th>
<td><?= html::purify($value) ?></td>
</tr>
<?php endforeach ?>
</table>