summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorGeorg Ehrke <dev@georgswebsite.de>2012-07-26 18:50:59 +0200
committerGeorg Ehrke <dev@georgswebsite.de>2012-07-26 18:50:59 +0200
commit16928f4d59799eb99c1e0c25a62b5adc4ab39f0f (patch)
tree4f77b08ca3fa768477eb8a9eca104a83b68a675a /lib
parent6fbed6a5881c83f14777a4881996ac6d760bb251 (diff)
downloadnextcloud-server-16928f4d59799eb99c1e0c25a62b5adc4ab39f0f.tar.gz
nextcloud-server-16928f4d59799eb99c1e0c25a62b5adc4ab39f0f.zip
fix spelling fail
Diffstat (limited to 'lib')
-rw-r--r--lib/db.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/db.php b/lib/db.php
index 6971fe4a583..f1928e68236 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();