Merge pull request #1231 from GPCsolutions/dolidb-installer

Fixed installer with DoliDB abstract class
This commit is contained in:
Laurent Destailleur 2013-09-11 07:29:23 -07:00
commit b06b2e2119

View File

@ -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;