From b1b769b046c367e6eaddedd906b6eac46ef30aa2 Mon Sep 17 00:00:00 2001 From: Rossiani Wijaya Date: Wed, 14 Jul 2010 09:44:19 +0000 Subject: [PATCH] MDL-22647 - Fixed undefined $strintro. Change $strintro to $strentries --- mod/glossary/index.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mod/glossary/index.php b/mod/glossary/index.php index 7c5dfe1dccc..aa64bc50a16 100644 --- a/mod/glossary/index.php +++ b/mod/glossary/index.php @@ -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"); }