Wow, super! Fehler wurde nun gefunden.
Alter Code:
PHP-Code:
if (!function_exists($strName) &&
file_exists(Registry :: get('SysFunctionsPath') . $this->strFolder . '/' . $strName . '.func.php'))
{
require_once (Registry :: get('SysFunctionsPath') . $this->strFolder . '/' . $strName . '.func.php');
}
$strFunction = ucfirst($this->strFolder) . '_' . $strName;
Neuer Code:
PHP-Code:
$strFunction = ucfirst($this->strFolder) . '_' . $strName;
if (!function_exists($strFunction) &&
file_exists(Registry :: get('SysFunctionsPath') . $this->strFolder . '/' . $strName . '.func.php'))
{
require_once (Registry :: get('SysFunctionsPath') . $this->strFolder . '/' . $strName . '.func.php');
}
Besten Dank.