MDL-22647 - Fixed undefined $strintro. Change $strintro to $strentries

This commit is contained in:
Rossiani Wijaya 2010-07-14 09:44:19 +00:00
parent f21b363042
commit b1b769b046

View File

@ -58,10 +58,10 @@ $strentries = get_string("entries", "glossary");
$table = new html_table();
if ($usesections) {
$table->head = array ($strsectionname, $strname, $strintro);
$table->head = array ($strsectionname, $strname, $strentries);
$table->align = array ("CENTER", "LEFT", "CENTER");
} else {
$table->head = array ($strname, $strintro);
$table->head = array ($strname, $strentries);
$table->align = array ("LEFT", "CENTER");
}