summaryrefslogtreecommitdiff
path: root/classes/auth
diff options
context:
space:
mode:
Diffstat (limited to 'classes/auth')
-rw-r--r--classes/auth/base.php6
1 files changed, 6 insertions, 0 deletions
diff --git a/classes/auth/base.php b/classes/auth/base.php
index 284ac1d38..83f99d109 100644
--- a/classes/auth/base.php
+++ b/classes/auth/base.php
@@ -1,5 +1,11 @@
<?php
class Auth_Base {
+ private $dbh;
+
+ function __construct() {
+ $this->dbh = Db::get();
+ }
+
function check_password($owner_uid, $password) {
return false;
}