Fix: error level

This commit is contained in:
Laurent Destailleur 2009-02-11 23:46:49 +00:00
parent 9a55b4e6aa
commit 811911edae

View File

@ -425,7 +425,7 @@ class DolibarrModules
$ok = 0;
// Run llx_mytable.sql files
$handle=opendir($dir);
$handle=@opendir($dir); // Dir may not exists
if ($handle)
{
while (($file = readdir($handle))!==false)
@ -439,7 +439,7 @@ class DolibarrModules
}
// Run llx_mytable.key.sql files
$handle=opendir($dir);
$handle=@opendir($dir); // Dir may not exist
if ($handle)
{
while (($file = readdir($handle))!==false)