# HG changeset patch # User Waqas Hussain # Date 1245906262 -18000 # Node ID 6f653b8beac9c30579dfcc737887e7231525a2a1 # Parent b7e17efe433ed6e64490c3aed668052782d0d9db xmlhandlers: Remove numeric attributes 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