Francois Gouget : testbot/cgi: ItemPage does not retrieve the master columns so simplify GenerateFormStart().
Module: tools Branch: master Commit: 284612cab919e96658bd78129982d6e3af04b706 URL: https://source.winehq.org/git/tools.git/?a=commit;h=284612cab919e96658bd7812... Author: Francois Gouget <fgouget(a)codeweavers.com> Date: Tue Jun 7 18:49:46 2022 +0200 testbot/cgi: ItemPage does not retrieve the master columns so simplify GenerateFormStart(). Signed-off-by: Francois Gouget <fgouget(a)codeweavers.com> Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- testbot/lib/ObjectModel/CGI/ItemPage.pm | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/testbot/lib/ObjectModel/CGI/ItemPage.pm b/testbot/lib/ObjectModel/CGI/ItemPage.pm index 8bea816..b4d79e7 100644 --- a/testbot/lib/ObjectModel/CGI/ItemPage.pm +++ b/testbot/lib/ObjectModel/CGI/ItemPage.pm @@ -106,16 +106,6 @@ sub GenerateFormStart($) $self->SUPER::GenerateFormStart(); - my ($MasterColNames, $MasterColValues) = $self->{Collection}->GetMasterCols(); - if (defined($MasterColNames)) - { - foreach my $ColIndex (0..$#{$MasterColNames}) - { - print "<div><input type='hidden' name='", $MasterColNames->[$ColIndex], - "' value='", $self->escapeHTML($MasterColValues->[$ColIndex]), - "' /></div>\n"; - } - } if (! $self->{Item}->GetIsNew()) { print "<div><input type='hidden' name='Key' value='",
participants (1)
-
Alexandre Julliard