summaryrefslogtreecommitdiff
path: root/classes/plugin.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2013-04-17 16:23:15 +0400
committerAndrew Dolgov <[email protected]>2013-04-17 16:48:41 +0400
commit6322ac79a020ab584d412d782d62b2ee77d7c6cf (patch)
treeb2e64a140a3bc9d9ce649ee67f8a687b6511d9f4 /classes/plugin.php
parentaca75cb5cb323535099c7aef46a78ea3cec082f2 (diff)
remove $link
Diffstat (limited to 'classes/plugin.php')
-rw-r--r--classes/plugin.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/classes/plugin.php b/classes/plugin.php
index e655a2062..60f127633 100644
--- a/classes/plugin.php
+++ b/classes/plugin.php
@@ -1,10 +1,10 @@
<?php
class Plugin {
- private $link;
+ private $dbh;
private $host;
function init($host) {
- $this->link = $host->get_link();
+ $this->dbh = $host->get_dbh();
$this->host = $host;
}