diff options
Diffstat (limited to 'common')
-rw-r--r-- | common/xmlparser.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/xmlparser.h b/common/xmlparser.h index 167d04249c..3738b69b7b 100644 --- a/common/xmlparser.h +++ b/common/xmlparser.h @@ -283,7 +283,7 @@ protected: while (isValidNameChar(_text[_pos])) _token += _text[_pos++]; - return isspace(_text[_pos]) != 0 || _text[_pos] == '>'; + return isspace(_text[_pos]) != 0 || _text[_pos] == '>' || _text[_pos] == '='; } /** |