From d80f25e969426201b2ee5043a368eef4331db252 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 --- 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 3933ce43b0d..bae905b17dc 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.34.1