summaryrefslogtreecommitdiffstats
path: root/wp-inst/wp-admin/profile.php
diff options
context:
space:
mode:
authordonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2005-08-23 15:14:59 +0000
committerdonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2005-08-23 15:14:59 +0000
commitc0837fe5ada01b3bf7ef1c7878d80e97f9f29040 (patch)
treedc7815e6553427204f3ab03298c93bc301163009 /wp-inst/wp-admin/profile.php
parent97c3315d747cf520e598067f285c7afc4af06fa9 (diff)
downloadwordpress-mu-c0837fe5ada01b3bf7ef1c7878d80e97f9f29040.tar.gz
wordpress-mu-c0837fe5ada01b3bf7ef1c7878d80e97f9f29040.tar.xz
wordpress-mu-c0837fe5ada01b3bf7ef1c7878d80e97f9f29040.zip
Show role in profile page
git-svn-id: http://svn.automattic.com/wordpress-mu/trunk@218 7be80a69-a1ef-0310-a953-fb0f7c49ff36
Diffstat (limited to 'wp-inst/wp-admin/profile.php')
-rw-r--r--wp-inst/wp-admin/profile.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/wp-inst/wp-admin/profile.php b/wp-inst/wp-admin/profile.php
index ae74d34..4e67c45 100644
--- a/wp-inst/wp-admin/profile.php
+++ b/wp-inst/wp-admin/profile.php
@@ -163,7 +163,7 @@ if (isset($updated)) { ?>
$output = '';
foreach($profileuser->roles as $role => $value) {
if($output != '') $output .= ', ';
- $output .= $wp_roles->role_names[$role];
+ $output .= $wp_roles->role_names[$value];
}
echo $output;
?></td>