From 68c85775d5e8ae023bc08dfd92374f1b8405c797 Mon Sep 17 00:00:00 2001 From: stronk7 Date: Mon, 24 Mar 2008 22:05:42 +0000 Subject: [PATCH] If the user has hidden role assignments, the icon should be the closed eye. MDL-13935 ; merged from 19_STABLE --- user/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/user/index.php b/user/index.php index ab1bccc1b4..61ce1c08d7 100644 --- a/user/index.php +++ b/user/index.php @@ -681,7 +681,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 = ''; } -- 2.39.5