From 893d5e69a06cdceb433c637249b0142aef6d4d58 Mon Sep 17 00:00:00 2001 From: Marina Glancy Date: Mon, 15 Jun 2015 17:14:59 +0800 Subject: [PATCH] MDL-50580 signup: move recaptcha outside of category --- login/signup_form.php | 1 + 1 file changed, 1 insertion(+) diff --git a/login/signup_form.php b/login/signup_form.php index 60713829906..83ce9fcedee 100644 --- a/login/signup_form.php +++ b/login/signup_form.php @@ -93,6 +93,7 @@ class login_signup_form extends moodleform { if ($this->signup_captcha_enabled()) { $mform->addElement('recaptcha', 'recaptcha_element', get_string('security_question', 'auth'), array('https' => $CFG->loginhttps)); $mform->addHelpButton('recaptcha_element', 'recaptcha', 'auth'); + $mform->closeHeaderBefore('recaptcha_element'); } if (!empty($CFG->sitepolicy)) {