1
0
mirror of https://github.com/moodle/moodle.git synced 2025-04-25 10:26:17 +02:00

auth base class MDL-21457 make the base class user_exists method argument list match reality

This commit is contained in:
Penny Leach 2010-01-28 05:12:04 +00:00
parent fbac726b5e
commit d61ffb0fca

@ -268,7 +268,7 @@ class auth_plugin_base {
* @param string $username (with system magic quotes)
* @return bool
*/
function user_exists() {
function user_exists($username) {
//override if needed
return false;
}