@@ -, +, @@ attrs - Apply this patch - Run: $ prove t/db_dependent/Koha/Patron/Modifications.t - Verify comment #70 on the bug is fixed now - Sign off :-D --- Koha/Patron/Modification.pm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) --- a/Koha/Patron/Modification.pm +++ a/Koha/Patron/Modification.pm @@ -135,7 +135,8 @@ sub approve { code => $attr->{code}, attribute => $attr->{value} } - )->store; + )->store + if $attr->{value}; } } catch { --