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;