summaryrefslogtreecommitdiff
path: root/classes/auth
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2013-04-18 15:36:54 +0400
committerAndrew Dolgov <[email protected]>2013-04-18 15:36:54 +0400
commit8cb5c64d6251718afd0f5ccb70f5040d9c3cb47a (patch)
tree4334dfc3f3199f8f41d509db94e148c28b163172 /classes/auth
parent073672ccd50d76800b5c2489cea9105aec8957eb (diff)
fix auth_base referencing dbh which was not present
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;
}