Fix: error level
This commit is contained in:
parent
9a55b4e6aa
commit
811911edae
@ -425,7 +425,7 @@ class DolibarrModules
|
|||||||
$ok = 0;
|
$ok = 0;
|
||||||
|
|
||||||
// Run llx_mytable.sql files
|
// Run llx_mytable.sql files
|
||||||
$handle=opendir($dir);
|
$handle=@opendir($dir); // Dir may not exists
|
||||||
if ($handle)
|
if ($handle)
|
||||||
{
|
{
|
||||||
while (($file = readdir($handle))!==false)
|
while (($file = readdir($handle))!==false)
|
||||||
@ -439,7 +439,7 @@ class DolibarrModules
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Run llx_mytable.key.sql files
|
// Run llx_mytable.key.sql files
|
||||||
$handle=opendir($dir);
|
$handle=@opendir($dir); // Dir may not exist
|
||||||
if ($handle)
|
if ($handle)
|
||||||
{
|
{
|
||||||
while (($file = readdir($handle))!==false)
|
while (($file = readdir($handle))!==false)
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user