From e4c3c7ead2d00f3363c0dd1d010c409f019d14f1 Mon Sep 17 00:00:00 2001 From: David Mudrak Date: Wed, 28 Jul 2010 10:57:48 +0000 Subject: [PATCH] MDL-23274 The lang parameter was ignored due to typo --- help.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/help.php b/help.php index 9456c856d18..6f3cc99fcc5 100644 --- a/help.php +++ b/help.php @@ -32,7 +32,7 @@ require_once(dirname(__FILE__) . '/config.php'); $identifier = required_param('identifier', PARAM_STRINGID); $component = required_param('component', PARAM_SAFEDIR); -$lang = required_param('component', PARAM_LANG); // TODO: maybe split into separate scripts +$lang = required_param('lang', PARAM_LANG); // TODO: maybe split into separate scripts $ajax = optional_param('ajax', 0, PARAM_BOOL); if (!$lang) {