We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix for that:
--- nusoap.php.orig 2020-04-14 15:10:57.172872019 +0200 +++ nusoap.php 2020-04-14 15:12:43.172875702 +0200 @@ -5694,7 +5694,7 @@ $ns = $this->getNamespaceFromPrefix($typePrefix); $localPart = $this->getLocalPart($partType); $typeDef = $this->getTypeDef($localPart, $ns); - if ($typeDef['typeClass'] == 'element') { + if (isset($typeDef['typeClass']) && $typeDef['typeClass'] == 'element') { $elementortype = 'element'; if (substr($localPart, -1) == '^') { $localPart = substr($localPart, 0, -1);
Issue of using $typeDef without checking is it array or boolean (getTypeDef: bool|array).
The text was updated successfully, but these errors were encountered:
Issue f00b4r#55 fix - access array offset on value of type bool
6e4e6a1
@see f00b4r#55
Issue #55 fix - access array offset on value of type bool
45fa816
@see #55
Successfully merging a pull request may close this issue.
Fix for that:
Issue of using $typeDef without checking is it array or boolean (getTypeDef: bool|array).
The text was updated successfully, but these errors were encountered: