summaryrefslogtreecommitdiff
path: root/classes/auth
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2012-09-04 12:46:08 +0400
committerAndrew Dolgov <[email protected]>2012-09-04 12:46:08 +0400
commitec78654f4eecdc7ae70a29a8b3b50850ed58fd39 (patch)
tree51b700abf62f9b6d7ba415b4b11724188e95eade /classes/auth
parent3ca8af7fd8de419172f14ec0a179d807cbcaa305 (diff)
add auth_base check_password()
Diffstat (limited to 'classes/auth')
-rw-r--r--classes/auth/base.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/classes/auth/base.php b/classes/auth/base.php
index 7c37967af..aa9d657a4 100644
--- a/classes/auth/base.php
+++ b/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;
}