N°4517 - PHP 8.1: Replace strlen() usages with utils::StrLen() for compatibility

This commit is contained in:
Molkobain
2022-05-18 19:59:20 +02:00
parent d3fb08ba81
commit 60aaa01e2e
3 changed files with 10 additions and 10 deletions

View File

@@ -655,7 +655,7 @@ abstract class MenuNode
$this->sMenuId = $sMenuId;
$this->iParentIndex = $iParentIndex;
$this->aReflectionProperties = array();
if (strlen($sEnableClass) > 0)
if (utils::StrLen($sEnableClass) > 0)
{
$this->aReflectionProperties['enable_class'] = $sEnableClass;
$this->aReflectionProperties['enable_action'] = $iActionCode;