N°5618 - Setup : Compatibility PHP 8.1

This commit is contained in:
acognet
2022-10-14 17:09:35 +02:00
parent 9ccff4f8de
commit 1fcb3af4c0
2 changed files with 2 additions and 2 deletions

View File

@@ -2270,7 +2270,7 @@ class Config
$oHandle = null;
$sConfig = null;
if (is_file($this->m_sFile))
if ($this->m_sFile!= null && is_file($this->m_sFile))
{
$oHandle = fopen($this->m_sFile, 'r');
$index = 0;