Browse Source

add auth_base check_password()

Andrew Dolgov 11 years ago
parent
commit
ec78654f4e
1 changed files with 4 additions and 0 deletions
  1. 4 0
      classes/auth/base.php

+ 4 - 0
classes/auth/base.php

@@ -6,6 +6,10 @@ class Auth_Base {
 		$this->link = $link;
 	}
 
+	function check_password($owner_uid, $password) {
+		return false;
+	}
+
 	function authenticate($login, $password) {
 		return false;
 	}