MDL-14293 Merged from 1.9, fix for undefined $status variable

This commit is contained in:
moodler
2008-04-10 03:35:17 +00:00
parent 4fd532ea9d
commit e6924a01bb
+3 -1
View File
@@ -1878,8 +1878,10 @@ function print_course($course) {
foreach ($rusers as $ra) {
if ($ra->hidden == 0 || $canseehidden) {
$fullname = fullname($ra->user, $canviewfullnames);
if($ra->hidden == 1){
if ($ra->hidden == 1) {
$status = " <img src=\"{$CFG->pixpath}/t/show.gif\" title=\"".get_string('userhashiddenassignments', 'role')."\" alt=\"".get_string('hiddenassign')."\" class=\"hide-show-image\"/>";
} else {
$status = '';
}
if (isset($aliasnames[$ra->roleid])) {