fu: Close-up of Fu, bringing a scoop of water to her mouth (Default)
fu ([personal profile] fu) wrote in [site community profile] changelog2010-11-17 09:02 am

[dw-free] Empty alt text for spacer images in talkread

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

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

alt=''; these are just spacer images.

Patch by [personal profile] fu.

Files modified:
  • htdocs/talkread.bml
--------------------------------------------------------------------------------
diff -r 785bf2db2878 -r fdfd00a92fe6 htdocs/talkread.bml
--- a/htdocs/talkread.bml	Wed Nov 17 16:46:40 2010 +0800
+++ b/htdocs/talkread.bml	Wed Nov 17 17:02:30 2010 +0800
@@ -441,16 +441,16 @@ body<=
 
         if ($post->{'state'} eq "D") {
             $ret .= "<p><a name='$htmlid'></a><table class='delcomment'><tr>";
-            $ret .= "<td><img src='$LJ::IMGPREFIX/dot.gif' height='1' width='" . ($opts->{'depth'} * 25) . "'></td>";
+            $ret .= "<td><img src='$LJ::IMGPREFIX/dot.gif' alt='' height='1' width='" . ($opts->{'depth'} * 25) . "'></td>";
             $ret .= "<td>$ML{'.deletedpost'}</td></tr></table>\n";
         } elsif ($post->{'state'} eq "S" && !$post->{'_loaded'} && !$post->{'_show'}) {
             $ret .= "<p><a name='$htmlid'></a><table class='screenedcomment'><tr>";
-            $ret .= "<td><img src='$LJ::IMGPREFIX/dot.gif' height='1' width='" . ($opts->{'depth'} * 25) . "'></td>";
+            $ret .= "<td><img src='$LJ::IMGPREFIX/dot.gif' alt='' height='1' width='" . ($opts->{'depth'} * 25) . "'></td>";
             my $screenedtext = $ML{'.screenedpost'};
             $ret .= "<td>$screenedtext</td></tr></table>\n";
         } elsif ($pu && $pu->is_suspended && !$viewsome) {
             $ret .= "<p><a name='$htmlid'></a><table class='suspendedcomment'><tr>";
-            $ret .= "<td><img src='$LJ::IMGPREFIX/dot.gif' height='1' width='" . ($opts->{'depth'} * 25) . "'></td>";
+            $ret .= "<td><img src='$LJ::IMGPREFIX/dot.gif' alt='' height='1' width='" . ($opts->{'depth'} * 25) . "'></td>";
             $ret .= "<td>$ML{'.replysuspended'}";
             if (LJ::Talk::can_delete($remote, $u, $up, $userpost)) {
                 $ret .= " <a href='$LJ::SITEROOT/delcomment?${jargent}id=$dtid'>" . LJ::img("btn_del", "", { align => 'absmiddle', hspace => 2 }) . "</a>";
@@ -486,7 +486,7 @@ body<=
                 }
 
                 $ret .= "<div id='$htmlid'><table width='100%' class='talk-comment'><tbody><tr>";
-                $ret .= "<td rowspan='2'><img src='$LJ::IMGPREFIX/dot.gif' height='1' width='" . ($opts->{'depth'} * 25) . "'></td>";
+                $ret .= "<td rowspan='2'><img src='$LJ::IMGPREFIX/dot.gif' alt='' height='1' width='" . ($opts->{'depth'} * 25) . "'></td>";
                 $ret .= "<td id='cmtbar$dtid' class='cmtbar-$level' style='background-color: $bgcolor' width='100%'>";
 
                 # Build the image tag for the comment's userpic, if there is one
@@ -667,7 +667,7 @@ body<=
 
                 my $url = LJ::Talk::talkargs( $talkurl, "thread=$dtid", $style_args ) . LJ::Talk::comment_anchor( $dtid );
                 $ret .= "<div id='$htmlid'><table ><tbody><tr>";
-                $ret .= "<td><img src='$LJ::IMGPREFIX/dot.gif' height='1' width='" . ($opts->{'depth'} * 25) . "'></td>";
+                $ret .= "<td><img src='$LJ::IMGPREFIX/dot.gif' alt='' height='1' width='" . ($opts->{'depth'} * 25) . "'></td>";
                 $ret .= "<td>";
                 if ($post->{'state'} eq 'F') {
                     $ret .= "($T{'frozen'}) ";
--------------------------------------------------------------------------------