From 1ace57be4643ee255f9ad6ecd135c4e9a1d184e7 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 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 Signed-off-by: Katrin Fischer --- 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.39.5