Rewrite to use rather 'interesting' way to determine what has changes since the last build

This commit is contained in:
Latif Khalifa
2012-02-12 09:21:56 +01:00
parent 009ac7c219
commit 1095e27b63
5 changed files with 117 additions and 56 deletions

View File

@@ -38,7 +38,7 @@ class DBH
$this->db_user = $db_user;
$this->db_host = $db_host;
$this->dbh = @sqlite_popen($db_name, 0666, $error_msg);
$this->dbh = @sqlite_open($db_name, 0666, $error_msg);
if (!$this->dbh) {
DBH::log("[error] connection to database failed: $error_msg");