Francois Gouget : patches: Add an end tag for some <td colspan='xxx'>.

Alexandre Julliard julliard at winehq.org
Fri Jun 17 14:44:39 CDT 2022


Module: tools
Branch: master
Commit: 1dfa91e21aea36df8ed194f63bb32af68be93df8
URL:    https://source.winehq.org/git/tools.git/?a=commit;h=1dfa91e21aea36df8ed194f63bb32af68be93df8

Author: Francois Gouget <fgouget at codeweavers.com>
Date:   Fri Jun 17 16:58:53 2022 +0200

patches: Add an end tag for some <td colspan='xxx'>.

Signed-off-by: Francois Gouget <fgouget at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 patches/update | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/patches/update b/patches/update
index f3eac9ee..8f79da9c 100755
--- a/patches/update
+++ b/patches/update
@@ -338,15 +338,15 @@ foreach my $file (sort { $patches{$b}->{"order"} <=> $patches{$a}->{"order"} } k
     if (@signoff)
     {
         printf INDEX "<tr class=\"%s $file.signoff\" id=\"$file.signoff\" style=\"display: none;\" onclick=\"toggle_display('$file.signoff')\">" .
-                     "<td colspan=\"5\" /><td colspan=\"4\" class=\"signoffextra author\">%s</td></tr>\n",
+                     "<td colspan=\"5\"></td><td colspan=\"4\" class=\"signoffextra author\">%s</td></tr>\n",
                $row & 1 ? "odd" : "even", join("", map { "Signed-off-by: " . escapeHTML($_) . "<br/>"; } @signoff );
     }
     foreach my $child (@{$patch->{"children"}})
     {
         printf INDEX "<tr class=\"%s\ $file.reply\" id=\"%s\" style=\"display: none;\" onclick=\"toggle_display('$file.reply')\">" .
-                     "<td colspan=\"2\" /><td colspan=\"2\" class=\"reply author\"><span class=\"indent\">%s</span></td> " .
+                     "<td colspan=\"2\"></td><td colspan=\"2\" class=\"reply author\"><span class=\"indent\">%s</span></td> " .
                      "<td class=\"reply author\"><span class=\"indent\"><a href=\"data/%s\">%s</a></span></td> " .
-                     "<td colspan=\"4\" /></tr>\n",
+                     "<td colspan=\"4\"></td></tr>\n",
             $row & 1 ? "odd" : "even", $child->{"id"}, escapeHTML($child->{"author"}), $child->{"id"}, escapeHTML($child->{"subject"});
     }
     $row++;




More information about the wine-cvs mailing list