[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
kareila.
Files modified:
http://bugs.dwscoalition.org/show_bug.cgi?id=2764
Correct case, to be able to cope with stricter parsers.
Patch by
![[personal profile]](https://www.dreamwidth.org/img/silk/identity/user.png)
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"; --------------------------------------------------------------------------------