From: Andrew Dolgov Date: Tue, 4 Sep 2012 08:46:08 +0000 (+0400) Subject: add auth_base check_password() X-Git-Tag: 1.6.0~69 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=ec78654f4eecdc7ae70a29a8b3b50850ed58fd39;p=tt-rss.git add auth_base check_password() --- diff --git a/classes/auth/base.php b/classes/auth/base.php index 7c37967a..aa9d657a 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; }