From 0108de4a21ce0424a409e036019c913d8805cafd Mon Sep 17 00:00:00 2001 From: Lisette Scheer Date: Wed, 11 Mar 2026 21:16:30 +0000 Subject: [PATCH] Bug 42071: Add 'show' to options that load a single suggestion Test plan: Before applying the patch: 1. Go to acquisitions 2. Go to Purchase Suggestions 3. Create a purchase suggestion (for ease of testing, select Centerville for the library) 4. On the table, click on the suggestion number 5. Observe the suggestion does not populate, including the breadcrumbs, but the url does contain the suggestion number. 6. Apply the patch 7. restart_all 8. Rpeat steps 1-4 9. Observe the suggestion now populates and can be edited. --- suggestion/suggestion.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/suggestion/suggestion.pl b/suggestion/suggestion.pl index 5e5689002ff..3b61a17c537 100755 --- a/suggestion/suggestion.pl +++ b/suggestion/suggestion.pl @@ -101,7 +101,7 @@ my $reasonsloop = GetAuthorisedValues("SUGGEST"); my $suggestion_ref = { $input->Vars }; my $stored_suggestion; -if ( $op eq "edit_form" ) { +if ( $op eq "edit_form" || $op eq "show" ) { $stored_suggestion = Koha::Suggestions->find( $input->param('suggestionid') ) if $input->param('suggestionid'); } -- 2.39.5