From 2af7f6e266ebe23ee4e87312626cf13014ab6651 Mon Sep 17 00:00:00 2001 From: skodak Date: Thu, 6 Jul 2006 21:27:00 +0000 Subject: [PATCH] fixed warning in glossary export, merged from MOODLE_16_STABLE --- mod/glossary/export.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mod/glossary/export.php b/mod/glossary/export.php index a4fc313665..dda8c4bcbe 100644 --- a/mod/glossary/export.php +++ b/mod/glossary/export.php @@ -5,6 +5,8 @@ $id = required_param('id', PARAM_INT); // Course Module ID + $mode= optional_param('mode', '', PARAM_ALPHA); // term entry cat date letter search author approval + $hook= optional_param('hook', '', PARAM_CLEAN); // the term, entry, cat, etc... to look for based on mode $l = optional_param('l','', PARAM_ALPHANUM); $cat = optional_param('cat',0, PARAM_ALPHANUM); -- 2.39.5