From: stronk7 Date: Mon, 24 Mar 2008 22:05:42 +0000 (+0000) Subject: If the user has hidden role assignments, the icon should be the closed eye. MDL-13935... X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=68c85775d5e8ae023bc08dfd92374f1b8405c797;p=moodle.git If the user has hidden role assignments, the icon should be the closed eye. MDL-13935 ; merged from 19_STABLE --- 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 = ''; }