You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When i change line 621 from:
if ($tt_ns != '' && $tt_ns == $this->namespaces['xsd']) {
to:
if (isset($tt_ns) && $tt_ns != '' && $tt_ns == $this->namespaces['xsd']) {
And line 623 from:
} elseif ($tt_ns) {
To:
} elseif (isset($tt_ns)) {
All seems fixed.
The text was updated successfully, but these errors were encountered:
ErrorException
Undefined variable: tt_ns
vendor/econea/nusoap/src/nusoap.php:621
When i change line 621 from:
if ($tt_ns != '' && $tt_ns == $this->namespaces['xsd']) {
to:
if (isset($tt_ns) && $tt_ns != '' && $tt_ns == $this->namespaces['xsd']) {
And line 623 from:
} elseif ($tt_ns) {
To:
} elseif (isset($tt_ns)) {
All seems fixed.
The text was updated successfully, but these errors were encountered: