fu: Close-up of Fu, bringing a scoop of water to her mouth (Default)
fu ([personal profile] fu) wrote in [site community profile] changelog2011-04-05 04:06 am

[dw-free] Add Additional Navigational Links to Inbox and Pages

[commit: http://hg.dwscoalition.org/dw-free/rev/197be79b14e5]

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

Check the length of the comment body, not the entire notification HTML.

Patch by [personal profile] fu.

Files modified:
  • cgi-bin/LJ/Event/JournalNewComment.pm
--------------------------------------------------------------------------------
diff -r b05985c7a7d2 -r 197be79b14e5 cgi-bin/LJ/Event/JournalNewComment.pm
--- a/cgi-bin/LJ/Event/JournalNewComment.pm	Mon Apr 04 22:19:37 2011 +0800
+++ b/cgi-bin/LJ/Event/JournalNewComment.pm	Tue Apr 05 12:05:21 2011 +0800
@@ -219,7 +219,7 @@ sub content {
         };
 
     $ret = "<div class='actions_top'>" . $self->as_html_actions . "</div>" . $ret
-        if LJ::has_too_many( $ret, linebreaks => 10, chars => 2000 );
+        if LJ::has_too_many( $comment_body, linebreaks => 10, chars => 2000 );
 
     $ret .= $self->as_html_actions;
 
--------------------------------------------------------------------------------