From a9894beaf3f4dfd92d2c0890ba80dac60d68ab8e Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Fri, 1 Jul 2016 17:00:39 +0100 Subject: [PATCH] Bug 15128: Do not display "New suggestion" if limit has just been reached If limit is X and patrons has X-1 pending suggestions, when a new one is added, the "New suggestion" should not been added. to avoid another call to SearchSuggestions, we assume than the suggestion has been correctly added. Signed-off-by: Jonathan Druart --- opac/opac-suggestions.pl | 1 + 1 file changed, 1 insertion(+) diff --git a/opac/opac-suggestions.pl b/opac/opac-suggestions.pl index 1cc96c2..628f864 100755 --- a/opac/opac-suggestions.pl +++ b/opac/opac-suggestions.pl @@ -148,6 +148,7 @@ if ( $op eq "add_confirm" ) { $suggestion->{branchcode} = $input->param('branchcode') || C4::Context->userenv->{"branch"}; &NewSuggestion($suggestion); + $patrons_pending_suggestions_count++; # delete empty fields, to avoid filter in "SearchSuggestion" foreach my $field ( qw( title author publishercode copyrightdate place collectiontitle isbn STATUS ) ) { -- 2.8.1