From be24cfe9c2bbe7e0d66740db12ea4479029ee3a1 Mon Sep 17 00:00:00 2001 From: stronk7 Date: Mon, 24 Mar 2008 22:04:37 +0000 Subject: [PATCH] If the user has hidden role assignments, the icon should be the closed eye. MDL-13935 --- user/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/user/index.php b/user/index.php index da3b6966e88..82ba2282b6b 100644 --- a/user/index.php +++ b/user/index.php @@ -606,7 +606,7 @@ $user = make_context_subobj($user); if ( !empty($user->hidden) ) { // if the assignment is hidden, display icon - $hidden = " pixpath}/t/hide.gif\" alt=\"".get_string('hiddenassign')."\" class=\"hide-show-image\"/>"; + $hidden = " pixpath}/t/show.gif\" title=\"".get_string('userhashiddenassignments', 'role')."\" alt=\"".get_string('hiddenassign')."\" class=\"hide-show-image\"/>"; } else { $hidden = ''; }