Revert "MDL-33212 Course page: Eye icon should override other conditions"

This reverts commit 805366d987.
This commit is contained in:
Dan Poltawski
2012-05-28 16:58:39 +08:00
parent 1cbf87e8db
commit ae3f09e6cd
2 changed files with 1 additions and 11 deletions
+1 -1
View File
@@ -1763,7 +1763,7 @@ function print_section($course, $section, $mods, $modnamesused, $absolute=false,
// see the activity itself, or for staff)
if (!$mod->uservisible) {
echo '<div class="availabilityinfo">'.$mod->availableinfo.'</div>';
} else if ($canviewhidden && !empty($CFG->enableavailability) && $mod->visible) {
} else if ($canviewhidden && !empty($CFG->enableavailability)) {
$ci = new condition_info($mod);
$fullinfo = $ci->get_full_information();
if($fullinfo) {
-10
View File
@@ -486,16 +486,6 @@ WHERE
}
}
// If the item is marked as 'not visible' then we don't change the available
// flag (visible/available are treated distinctly), but we remove any
// availability info. If the item is hidden with the eye icon, it doesn't
// make sense to show 'Available from <date>' or similar, because even
// when that date arrives it will still not be available unless somebody
// toggles the eye icon.
if (!$this->cm->visible) {
$information = '';
}
$information=trim($information);
return $available;
}