mirror of
https://github.com/moodle/moodle.git
synced 2025-01-31 12:45:04 +01:00
18 lines
396 B
PHP
18 lines
396 B
PHP
<?php // $Id$
|
|
// No authentication at all. This method approves everything!
|
|
|
|
function auth_user_login ($username, $password) {
|
|
// Returns true if the username doesn't exist yet
|
|
// Returns true if the username and password work
|
|
|
|
if ($user = get_record('user', 'username', $username)) {
|
|
return validate_internal_user_password($user, $password);
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
|
|
|
|
?>
|