From 146106a827b84fa3342fb7afef5919b94c10a797 Mon Sep 17 00:00:00 2001 From: Aleksander Machniak Date: Mon, 9 Jul 2012 19:57:50 +0200 Subject: Support sqlite file mode setting --- program/include/rcube_db_sqlite.php | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'program/include') diff --git a/program/include/rcube_db_sqlite.php b/program/include/rcube_db_sqlite.php index 57f8ddc2a..a9774cd51 100644 --- a/program/include/rcube_db_sqlite.php +++ b/program/include/rcube_db_sqlite.php @@ -45,7 +45,12 @@ class rcube_db_sqlite extends rcube_db { // Create database file, required by PDO to exist on connection if (!empty($dsn['database']) && !file_exists($dsn['database'])) { - touch($dsn['database']); + $created = touch($dsn['database']); + + // File mode setting, for compat. with MDB2 + if (!empty($dsn['mode']) && $created) { + chmod($dsn['database'], octdec($dsn['mode'])); + } } } @@ -68,7 +73,7 @@ class rcube_db_sqlite extends rcube_db $q = $dbh->exec($data); if ($q === false) { - $error = $this->dbh->errorInfo(); + $error = $dbh->errorInfo(); $this->db_error = true; $this->db_error_msg = sprintf('[%s] %s', $error[1], $error[2]); -- cgit v1.2.3