mirror of
https://github.com/moodle/moodle.git
synced 2025-08-04 16:36:37 +02:00
MDL-34685 authlib - fix trailing whitespace
This commit is contained in:
parent
57d38adc58
commit
b217edd265
1 changed files with 3 additions and 3 deletions
|
@ -278,15 +278,15 @@ class auth_plugin_base {
|
||||||
//override when can signup
|
//override when can signup
|
||||||
print_error('mustbeoveride', 'debug', '', 'user_signup()' );
|
print_error('mustbeoveride', 'debug', '', 'user_signup()' );
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Return a form to capture user details for account creation.
|
* Return a form to capture user details for account creation.
|
||||||
* This is used in /login/signup.php.
|
* This is used in /login/signup.php.
|
||||||
* @return moodle_form A form which edits a record from the user table.
|
* @return moodle_form A form which edits a record from the user table.
|
||||||
*/
|
*/
|
||||||
function signup_form() {
|
function signup_form() {
|
||||||
global $CFG;
|
global $CFG;
|
||||||
|
|
||||||
require_once($CFG->dirroot.'/login/signup_form.php');
|
require_once($CFG->dirroot.'/login/signup_form.php');
|
||||||
return new login_signup_form(null, null, 'post', '', array('autocomplete'=>'on'));
|
return new login_signup_form(null, null, 'post', '', array('autocomplete'=>'on'));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue