diff options
author | Tim Almdal <tnalmdal@shaw.ca> | 2010-01-28 09:27:27 -0800 |
---|---|---|
committer | Tim Almdal <tnalmdal@shaw.ca> | 2010-01-28 09:27:27 -0800 |
commit | c51fe9682075c961972c344f4888a4adceabe3eb (patch) | |
tree | 85edb38d8dae86812e4b6c420f16b0027827ccce /modules/gallery/views/user_profile_info.html.php | |
parent | 75aec29350442351299c5ecadfa07042b857c558 (diff) |
Make the varible for the profile name more descriptive and clean the label
Diffstat (limited to 'modules/gallery/views/user_profile_info.html.php')
-rw-r--r-- | modules/gallery/views/user_profile_info.html.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/gallery/views/user_profile_info.html.php b/modules/gallery/views/user_profile_info.html.php index 2f2d68d3..58e134bb 100644 --- a/modules/gallery/views/user_profile_info.html.php +++ b/modules/gallery/views/user_profile_info.html.php @@ -1,8 +1,8 @@ <?php defined("SYSPATH") or die("No direct script access.") ?> <table> - <? foreach ($fields as $field => $value): ?> + <? foreach ($user_profile_data as $label => $value): ?> <tr> - <td><?= $field ?></td> + <td><?= html::clean($label) ?></td> <td><?= html::purify($value) ?></td> </tr> <? endforeach ?> |