Commit 956bbd58 authored by Gaston Dombiak's avatar Gaston Dombiak Committed by gato

Fixes parsing of elements that where closed in the "same word" (e.g....

Fixes parsing of elements that where closed in the "same word" (e.g. <presence/>). This fixes Gaim problem.

git-svn-id: http://svn.igniterealtime.org/svn/repos/wildfire/trunk@6771 b35dd754-fafc-0310-a699-88a17e54d16e
parent 72cd9de5
......@@ -253,6 +253,9 @@ class XMLLightweightParser {
insideChildrenTag = false;
continue;
}
else if (ch == '/') {
status = XMLLightweightParser.VERIFY_CLOSE_TAG;
}
head.append(ch);
} else if (status == XMLLightweightParser.INIT) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment