MDL-50332 enrol_self: Setting form url for guests

Credit to Andrew Nicols.
This commit is contained in:
David Monllao
2015-09-23 09:52:04 +08:00
parent 201a26bbaa
commit 012d14e892
+5 -1
View File
@@ -249,7 +249,11 @@ class enrol_self_plugin extends enrol_plugin {
$data = new stdClass();
$data->header = $this->get_instance_name($instance);
$data->info = $enrolstatus;
$form = new enrol_self_empty_form(null, $data);
// The can_self_enrol call returns a button to the login page if the user is a
// guest, setting the login url to the form if that is the case.
$url = isguestuser() ? get_login_url() : null;
$form = new enrol_self_empty_form($url, $data);
}
ob_start();