From 8235d4c4d81ca820711e221e906c3fadfcbe2689 Mon Sep 17 00:00:00 2001 From: kjmtsh Date: Mon, 6 Oct 2014 00:19:56 +0000 Subject: [PATCH] fixed the typo git-svn-id: https://plugins.svn.wordpress.org/sqlite-integration/trunk@1002204 b8457f37-d9ea-0310-8a92-e5e31aec5664 --- pdoengine.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pdoengine.class.php b/pdoengine.class.php index 013fabc..be6374a 100644 --- a/pdoengine.class.php +++ b/pdoengine.class.php @@ -170,7 +170,7 @@ class PDOEngine extends PDO { */ function __construct() { register_shutdown_function(array($this, '__destruct')); - $dsn = 'sqlite' . FQDB; + $dsn = 'sqlite:' . FQDB; if (isset($GLOBALS['@pdo'])) { $this->pdo = $GLOBALS['@pdo']; } else {