diff --git a/library/Class/Import/Typo3.php b/library/Class/Import/Typo3.php
index 05491930863be69696f41d340fa91a1c7f6d5416..c46f11dbfd5fbf14e88109dd5e87d5a76d844e3e 100644
--- a/library/Class/Import/Typo3.php
+++ b/library/Class/Import/Typo3.php
@@ -749,7 +749,15 @@ class Typo3DB {
 
 
 	public function __construct() {
-    $this->t3db = new Class_Systeme_Sql('localhost', 'root', 'root', 'miop_typo3');
+    $this->t3db = new Class_Systeme_Sql('','','','');
+		$this
+			->t3db
+			->setAdapter(Zend_Db::factory(
+																		'mysqli',
+																		['host' => 'localhost',
+																		 'username' => 'root',
+																		 'password' => 'root',
+																		 'dbname' =>  'miop_typo3']));
 	}