Fixed a compiler error message (wrong syntax when using a PHP class to implement the class methods)

SVN:trunk[3158]
This commit is contained in:
Romain Quetiez
2014-05-19 07:28:26 +00:00
parent ec77e58276
commit 85cb04a3f3

View File

@@ -1097,7 +1097,7 @@ EOF;
$sParentClass = $oPhpParent->GetChildText('name', '');
if ($sParentClass == '')
{
throw new Exception("Failed to process class '".$oClass->getAttribute('id')."', from '$sRelativeDir': missing required tag 'name' under 'php_parent'.");
throw new Exception("Failed to process class '".$oClass->getAttribute('id')."', missing required tag 'name' under 'php_parent'.");
}
$sIncludeFile = $oPhpParent->GetChildText('file', '');
if ($sIncludeFile != '')