fu: Close-up of Fu, bringing a scoop of water to her mouth (Default)
fu ([personal profile] fu) wrote in [site community profile] changelog2010-07-12 10:32 am

[dw-free] OPML has the case wrong: xmlUrl, not xmlURL

[commit: http://hg.dwscoalition.org/dw-free/rev/20062fc96a44]

http://bugs.dwscoalition.org/show_bug.cgi?id=2764

Correct case, to be able to cope with stricter parsers.

Patch by [personal profile] kareila.

Files modified:
  • htdocs/tools/opml.bml
--------------------------------------------------------------------------------
diff -r bc40d2bf36ca -r 20062fc96a44 htdocs/tools/opml.bml
--- a/htdocs/tools/opml.bml	Mon Jul 12 18:31:47 2010 +0800
+++ b/htdocs/tools/opml.bml	Mon Jul 12 18:38:07 2010 +0800
@@ -103,7 +103,7 @@ _c?><?_code
                 $feed .= "?auth=digest";
             }
         }
-        $x .= "<outline text=\"" . LJ::exml($title) . "\" xmlURL=\"" . LJ::exml($feed) . "\" />\n";
+        $x .= "<outline text=\"" . LJ::exml($title) . "\" xmlUrl=\"" . LJ::exml($feed) . "\" />\n";
     }
 
     $x .= "</body></opml>\n";
--------------------------------------------------------------------------------