aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorplegall <plg@piwigo.org>2005-03-12 10:28:44 +0000
committerplegall <plg@piwigo.org>2005-03-12 10:28:44 +0000
commit56d095b30f5d5e5ecfbdd54458d8326a646c5a1c (patch)
treefc08ae6d85dc47d4163630bb6574623511cb1d1b
parent0755ca8bfe3ba4711be84089ac83da98e4dd1b44 (diff)
- bug fixed : status name is displayed as its localized name
git-svn-id: http://piwigo.org/svn/trunk@746 68402e56-0260-453c-a942-63ccdbb3a9ee
-rw-r--r--profile.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/profile.php b/profile.php
index a36fdbc74..42d36ca92 100644
--- a/profile.php
+++ b/profile.php
@@ -366,7 +366,7 @@ SELECT user_id, group_id, name
'U_MOD'=>add_session_id($profile_url.$item['id']),
'U_PERM'=>add_session_id($perm_url.$item['id']),
'USERNAME'=>$item['username'],
- 'STATUS'=>$item['status'],
+ 'STATUS'=>$lang['user_status_'.$item['status']],
'EMAIL'=>isset($item['mail_address']) ? $item['mail_address'] : '',
'GROUPS'=>$groups
));