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
+1 -1
View File
@@ -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;
}