Merge branch 'MDL-45135-26' of git://github.com/danpoltawski/moodle into MOODLE_26_STABLE

This commit is contained in:
Sam Hemelryk
2014-05-20 08:47:21 +12:00
+3 -3
View File
@@ -57,16 +57,16 @@ $table = new html_table();
if ($usesections) {
$strsectionname = get_string('sectionname', 'format_'.$course->format);
$table->head = array ($strsectionname, $strname, $strentries);
$table->align = array ("CENTER", "LEFT", "CENTER");
$table->align = array ('center', 'left', 'center');
} else {
$table->head = array ($strname, $strentries);
$table->align = array ("LEFT", "CENTER");
$table->align = array ('left', 'center');
}
if ($show_rss = (isset($CFG->enablerssfeeds) && isset($CFG->glossary_enablerssfeeds) &&
$CFG->enablerssfeeds && $CFG->glossary_enablerssfeeds)) {
$table->head[] = $strrss;
$table->align[] = "CENTER";
$table->align[] = 'center';
}
$currentsection = "";