Files
gallery3/modules/gallery/views/user_profile_info.html.php

10 lines
259 B
PHP
Raw Normal View History

<?php defined("SYSPATH") or die("No direct script access.") ?>
<table>
2018-01-28 12:43:27 +01:00
<?php foreach ($user_profile_data as $label => $value): ?>
<tr>
<th><?= html::clean($label) ?></th>
<td><?= html::purify($value) ?></td>
</tr>
2018-01-28 12:43:27 +01:00
<?php endforeach ?>
</table>