Einzelnen Beitrag anzeigen
Alt 22.09.2009, 20:00  
stayInside
Erfahrener Benutzer
 
Registriert seit: 06.11.2008
Beiträge: 208
stayInside befindet sich auf einem aufstrebenden Ast
Standard

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.
stayInside ist offline   Mit Zitat antworten