Skip to content

Commit

Permalink
fix - array to string conversion warning
Browse files Browse the repository at this point in the history
  • Loading branch information
benboydens authored and f3l1x committed Nov 20, 2024
1 parent 392ca17 commit e906394
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/nusoap.php
Original file line number Diff line number Diff line change
Expand Up @@ -6068,7 +6068,7 @@ function serializeType($name, $type, $value, $use = 'encoded', $encodingStyle =
}
$attrs = $value->attributes;
$value = $value->value;
$this->debug("in serializeType: soapval overrides value to $value");
$this->debug("in serializeType: soapval overrides value to " . $this->varDump($value));
if ($attrs) {
if (!is_array($value)) {
$value['!'] = $value;
Expand Down

0 comments on commit e906394

Please sign in to comment.