From 0756aaecac80da4936a95c8de098fd4c5cc8ecd5 Mon Sep 17 00:00:00 2001 From: willcast Date: Mon, 17 Nov 2003 12:40:25 +0000 Subject: [PATCH] - Fixed bug regarding default setting' variable names --- mod/glossary/edit.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mod/glossary/edit.html b/mod/glossary/edit.html index e953d456b3..28ab077d95 100644 --- a/mod/glossary/edit.html +++ b/mod/glossary/edit.html @@ -67,7 +67,7 @@ if (isset($errors)) { if ($newentry->usedynalink) { $selected = "checked"; } - } elseif ( $CFG->cnflinkentry ) { + } elseif ( $CFG->glossary_linkentries ) { $selected = "checked"; } ?> @@ -80,7 +80,7 @@ if (isset($errors)) { if ($newentry->casesensitive) { $selected = "checked"; } - } elseif ( $CFG->cnfcasesensitive ) { + } elseif ( $CFG->glossary_casesensitive ) { $selected = "checked"; } ?> @@ -93,7 +93,7 @@ if (isset($errors)) { if ($newentry->fullmatch) { $selected = "checked"; } - } elseif ( $CFG->cnffullmatch ) { + } elseif ( $CFG->glossary_fullmatch ) { $selected = "checked"; } ?> -- 2.39.5