[dw-free] Close cut tag in moderation area wrong
[commit: http://hg.dwscoalition.org/dw-free/rev/012e39147e25]
http://bugs.dwscoalition.org/show_bug.cgi?id=2552
Use new-style cut tag (</cut> rather than </lj-cut>)
Patch by
fu.
Files modified:
http://bugs.dwscoalition.org/show_bug.cgi?id=2552
Use new-style cut tag (</cut> rather than </lj-cut>)
Patch by
![[personal profile]](https://www.dreamwidth.org/img/silk/identity/user.png)
Files modified:
- cgi-bin/LJ/CleanHTML.pm
-------------------------------------------------------------------------------- diff -r 7b98eca5d3d3 -r 012e39147e25 cgi-bin/LJ/CleanHTML.pm --- a/cgi-bin/LJ/CleanHTML.pm Wed Nov 17 23:20:47 2010 +0800 +++ b/cgi-bin/LJ/CleanHTML.pm Wed Nov 17 23:37:13 2010 +0800 @@ -949,7 +949,7 @@ sub clean } elsif ($tag eq "lj-cut") { if ($opts->{'cutpreview'}) { - $newdata .= "<b></lj-cut></b>"; + $newdata .= "<b></cut></b>"; } } else { if ($mode eq "allow") { --------------------------------------------------------------------------------