From 982a85e380a74c01775b9949429e44033ee08b59 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Thu, 18 Apr 2024 08:54:48 +0200 Subject: [PATCH] Bug 36635: Fix vendor's issue show view Content-Type: text/plain; charset=utf-8 Should be "show" not "cud-show" Test plan: Create an issue for a vendor, click on the issue's id on the issue list table Notice that with the patch applied the issue is displayed. Without the patch the "show" view is empty Signed-off-by: Marcel de Rooy --- acqui/vendor_issues.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/acqui/vendor_issues.pl b/acqui/vendor_issues.pl index 3933ce43b0..bae905b17d 100755 --- a/acqui/vendor_issues.pl +++ b/acqui/vendor_issues.pl @@ -53,7 +53,7 @@ unless ($vendor) { exit; } -if ( $op eq 'add_form' || $op eq 'cud-show' ) { +if ( $op eq 'add_form' || $op eq 'show' ) { $template->param( issue => $issue ); } elsif ( $op eq 'cud-add_validate' ) { my $type = $input->param('type'); -- 2.30.2