From 16928f4d59799eb99c1e0c25a62b5adc4ab39f0f Mon Sep 17 00:00:00 2001 From: Georg Ehrke Date: Thu, 26 Jul 2012 18:50:59 +0200 Subject: [PATCH] fix spelling fail --- lib/db.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/db.php b/lib/db.php index 6971fe4a58..f1928e6823 100644 --- a/lib/db.php +++ b/lib/db.php @@ -43,7 +43,7 @@ class OC_DB { */ private static function getDBBackend(){ $backend=self::BACKEND_MDB2; - if(class_exists('PDO') && OC_Config::getValue('installed', false)){//check if we can use PDO, else use MDB2 (instalation always needs to be done my mdb2) + if(class_exists('PDO') && OC_Config::getValue('installed', false)){//check if we can use PDO, else use MDB2 (installation always needs to be done my mdb2) $type = OC_Config::getValue( "dbtype", "sqlite" ); if($type=='sqlite3') $type='sqlite'; $drivers=PDO::getAvailableDrivers();