From fc3400de5994b5358535a81788150970c86bc48e Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Thu, 20 Mar 2025 09:19:50 +0100 Subject: [PATCH] Bug 39325: manual - suggestion - no one => no_one It has been changed (automatically) from "noone" to "no one", which was wrong. --- .../intranet-tmpl/prog/en/modules/suggestion/suggestion.tt | 2 +- suggestion/suggestion.pl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/suggestion/suggestion.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/suggestion/suggestion.tt index ee953c3f76d..3d131c6d36e 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/suggestion/suggestion.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/suggestion/suggestion.tt @@ -668,7 +668,7 @@
- + [% IF ( suggestionid ) %] [% IF ( need_confirm ) %] diff --git a/suggestion/suggestion.pl b/suggestion/suggestion.pl index 811c30a9fd0..a72e7a2a489 100755 --- a/suggestion/suggestion.pl +++ b/suggestion/suggestion.pl @@ -506,7 +506,7 @@ $template->param( "op" => $op, ); -if ( defined($returnsuggested) and $returnsuggested ne "no one" ) { +if ( defined($returnsuggested) and $returnsuggested ne "no_one" ) { print $input->redirect( "/cgi-bin/koha/members/moremember.pl?borrowernumber=" . $returnsuggested . "#suggestions" ); } -- 2.34.1