diff -r b7e17efe433e -r 6f653b8beac9 core/xmlhandlers.lua --- a/core/xmlhandlers.lua Thu Jun 25 08:20:38 2009 +0500 +++ b/core/xmlhandlers.lua Thu Jun 25 10:04:22 2009 +0500 @@ -60,13 +60,14 @@ end -- FIXME !!!!! - for i, k in ipairs(attr) do + for i=1,#attr do + local k = attr[i]; + attr[i] = nil; local ns, nm = k:match("^([^|]+)|?([^|]-)$") if ns and nm then ns = ns_prefixes[ns]; if ns then attr[ns..":"..nm] = attr[k]; - attr[i] = ns..":"..nm; attr[k] = nil; end end