]> git.wh0rd.org - tt-rss.git/blobdiff - classes/handler.php
fix language detection; remove f_guid debugging
[tt-rss.git] / classes / handler.php
index 9d6c99e0da27162f8166bf2fb072599746ee29a7..b209320458d40d52b8d530a9e2ee9324da4ce8d0 100644 (file)
@@ -1,10 +1,10 @@
 <?php
-class Handler {
-       protected $link;
+class Handler implements IHandler {
+       protected $dbh;
        protected $args;
 
-       function __construct($link, $args) {
-               $this->link = $link;
+       function __construct($args) {
+               $this->dbh = Db::get();
                $this->args = $args;
        }
 
@@ -19,5 +19,6 @@ class Handler {
        function after() {
                return true;
        }
+
 }
 ?>