diff options
| author | Andrew Dolgov <noreply@fakecake.org> | 2017-12-03 14:49:18 +0300 |
|---|---|---|
| committer | Andrew Dolgov <noreply@fakecake.org> | 2017-12-03 14:49:18 +0300 |
| commit | df5d2a06657be3abb671c44295848afefc7f8fd4 (patch) | |
| tree | ffa8e53ec186bb45b2d404225c0be645541e20d7 /classes/handler.php | |
| parent | 62c37cd697187a593afca4d17db26cfd6ef36ece (diff) | |
pluginhost: do not connect via legacy DB api until requested
log all initiated legacy database connections
Diffstat (limited to 'classes/handler.php')
| -rw-r--r-- | classes/handler.php | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/classes/handler.php b/classes/handler.php index 483b573e3..5b1109492 100644 --- a/classes/handler.php +++ b/classes/handler.php @@ -1,11 +1,9 @@ <?php class Handler implements IHandler { - protected $dbh; protected $pdo; protected $args; function __construct($args) { - $this->dbh = Db::get(); $this->pdo = Db::pdo(); $this->args = $args; } |