From 170bef3e8daef84030802d4f4c7a3ad7c6fc9391 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Tue, 14 May 2019 12:23:25 -0500 Subject: [PATCH] Bug 22908: Prevent ModSuggestion to send a notice if something wrong happened There is a return value $status_update_table that is set to 0, then we send the alert (whatever the value of this variable). We must return earlier if something happened! Test plan: Not sure how to recreate it via the interface, so just run the tests? Signed-off-by: Liz Rea --- C4/Suggestions.pm | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/C4/Suggestions.pm b/C4/Suggestions.pm index 71b9000574..05a7d20616 100644 --- a/C4/Suggestions.pm +++ b/C4/Suggestions.pm @@ -544,11 +544,10 @@ sub ModSuggestion { } my $rs = Koha::Database->new->schema->resultset('Suggestion')->find($suggestion->{suggestionid}); - my $status_update_table = 1; - eval { + eval { # FIXME Must raise an exception instead $rs->update($suggestion); }; - $status_update_table = 0 if( $@ ); + return 0 if $@; if ( $suggestion->{STATUS} ) { @@ -584,7 +583,7 @@ sub ModSuggestion { ) or warn "can't enqueue letter $letter"; } } - return $status_update_table; + return 1; # No useful if the exception is raised earlier } =head2 ConnectSuggestionAndBiblio -- 2.11.0