@@ -, +, @@ - Create a suggestion using an existing biblio title - Ignore the warning and save - Edit again and save --- suggestion/suggestion.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/suggestion/suggestion.pl +++ a/suggestion/suggestion.pl @@ -133,7 +133,7 @@ if ( $op =~ /save/i ) { itemtype => $suggestion_only->{itemtype}, }); - if ( ( my ($duplicatebiblionumber, $duplicatetitle) = FindDuplicate($biblio) ) && !$save_confirmed ) { + if ( !$suggestion_only->{suggestionid} && ( my ($duplicatebiblionumber, $duplicatetitle) = FindDuplicate($biblio) ) && !$save_confirmed ) { push @messages, { type => 'error', code => 'biblio_exists', id => $duplicatebiblionumber, title => $duplicatetitle }; $template->param( messages => \@messages, --