From cbb763ab3f6f853bddd5d6ed1f331fbe9dea51a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Doursenaud?= Date: Wed, 11 Sep 2013 15:48:25 +0200 Subject: [PATCH] Fixed installer with DoliDB abstract class --- htdocs/install/fileconf.php | 1 + 1 file changed, 1 insertion(+) diff --git a/htdocs/install/fileconf.php b/htdocs/install/fileconf.php index e54a3275703..1a26789811e 100644 --- a/htdocs/install/fileconf.php +++ b/htdocs/install/fileconf.php @@ -302,6 +302,7 @@ if (! empty($force_install_message)) if (is_readable($dir."/".$file) && preg_match('/^(.*)\.class\.php$/i',$file,$reg)) { $type=$reg[1]; + if ($type === 'DoliDB') continue; // Skip abstract class $class='DoliDB'.ucfirst($type); include_once $dir."/".$file;