From 99713045d0c6dac81f886116a769056bfa580f17 Mon Sep 17 00:00:00 2001 From: s-renier-taonix-fr Date: Mon, 13 Feb 2023 10:32:26 +0800 Subject: [PATCH] Fix unnecessary semicolon --- src/nusoap.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nusoap.php b/src/nusoap.php index a0f3000..1e170b0 100755 --- a/src/nusoap.php +++ b/src/nusoap.php @@ -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);