remove old driver

This commit is contained in:
friendica
2013-04-22 21:40:33 -07:00
parent 150b18005a
commit 9bff33f112
2 changed files with 10 additions and 193 deletions

View File

@@ -60,6 +60,16 @@ abstract class dba_driver {
}
function dbg($dbg) {
$this->debug = $dbg;
}
function __destruct() {
if($this->db && $this->connected) {
$this->close();
}
}
}