Skip to content

Commit

Permalink
Fix unnecessary semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
s-renier-taonix-fr authored and f3l1x committed Feb 13, 2023
1 parent 113627f commit 9971304
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 @@ -6827,7 +6827,7 @@ function __construct($xml, $encoding = 'UTF-8', $method = '', $decode_utf8 = tru
if(!xml_parse($this->parser, $xmlString, false)) {
$parseErrors['lineNumber'] = xml_get_current_line_number($this->parser);
$parseErrors['errorString'] = xml_error_string(xml_get_error_code($this->parser));
};
}
}
//Tell the script that is the end of the parsing (by setting is_final to TRUE)
xml_parse($this->parser, '', true);
Expand Down

0 comments on commit 9971304

Please sign in to comment.