summaryrefslogtreecommitdiff
path: root/classes/auth
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2017-12-03 14:49:18 +0300
committerAndrew Dolgov <[email protected]>2017-12-03 14:49:18 +0300
commitdf5d2a06657be3abb671c44295848afefc7f8fd4 (patch)
treeffa8e53ec186bb45b2d404225c0be645541e20d7 /classes/auth
parent62c37cd697187a593afca4d17db26cfd6ef36ece (diff)
pluginhost: do not connect via legacy DB api until requested
log all initiated legacy database connections
Diffstat (limited to 'classes/auth')
-rw-r--r--classes/auth/base.php2
1 files changed, 0 insertions, 2 deletions
diff --git a/classes/auth/base.php b/classes/auth/base.php
index 652b66e6e..dbc77f8cd 100644
--- a/classes/auth/base.php
+++ b/classes/auth/base.php
@@ -1,10 +1,8 @@
<?php
class Auth_Base {
- private $dbh;
private $pdo;
function __construct() {
- $this->dbh = Db::get();
$this->pdo = Db::pdo();
}