aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorWaqas Hussain <waqas20@gmail.com>2009-11-28 12:00:31 +0500
committerWaqas Hussain <waqas20@gmail.com>2009-11-28 12:00:31 +0500
commitbeb6fa2f210bbf8ea8d976f11728d20c5b41ad42 (patch)
tree67ab3377d5b8b49c340fce11b3cb99ea4ba7ce1c /core
parent20937974626ff19fb5951f016ada12760c13ea15 (diff)
downloadprosody-beb6fa2f210bbf8ea8d976f11728d20c5b41ad42.tar.gz
prosody-beb6fa2f210bbf8ea8d976f11728d20c5b41ad42.zip
core.xmlhandlers: Fixed processing of empty namespaces (which caused an issue with jwchat).
Diffstat (limited to 'core')
-rw-r--r--core/xmlhandlers.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/core/xmlhandlers.lua b/core/xmlhandlers.lua
index d679af97..82c2d0b8 100644
--- a/core/xmlhandlers.lua
+++ b/core/xmlhandlers.lua
@@ -50,7 +50,7 @@ function init_xmlhandlers(session, stream_callbacks)
chardata = {};
end
local curr_ns,name = tagname:match("^([^\1]*)\1?(.*)$");
- if not name then
+ if name == "" then
curr_ns, name = "", curr_ns;
end
@@ -63,7 +63,7 @@ function init_xmlhandlers(session, stream_callbacks)
local k = attr[i];
attr[i] = nil;
local ns, nm = k:match("^([^\1]*)\1?(.*)$");
- if ns and nm then
+ if nm ~= "" then
ns = ns_prefixes[ns];
if ns then
attr[ns..":"..nm] = attr[k];
@@ -105,7 +105,7 @@ function init_xmlhandlers(session, stream_callbacks)
end
function xml_handlers:EndElement(tagname)
local curr_ns,name = tagname:match("^([^\1]*)\1?(.*)$");
- if not name then
+ if name == "" then
curr_ns, name = "", curr_ns;
end
if (not stanza) or (#stanza.last_add > 0 and name ~= stanza.last_add[#stanza.last_add].name) then