# HG changeset patch # User Paul Aurich # Date 1256962302 25200 # Node ID 3c18c2d03bc22fdfb71295f3cb0e46d0e7b73dc9 # Parent d3afb1403aa71914bd585f52736b148aa7d4ef94 mod_pastebin: Fix finding of XHTML content. diff -r d3afb1403aa7 -r 3c18c2d03bc2 mod_pastebin/mod_pastebin.lua --- a/mod_pastebin/mod_pastebin.lua Sat Oct 31 13:47:34 2009 +0000 +++ b/mod_pastebin/mod_pastebin.lua Fri Oct 30 21:11:42 2009 -0700 @@ -46,7 +46,7 @@ for k,v in ipairs(stanza) do if v.name == "body" then body, bodyindex = v, k; - elseif v.name == "html" and v.attr.xmlns == xmlns_xhtml then + elseif v.name == "html" and v.attr.xmlns == xmlns_xhtmlim then htmlindex = k; end end