https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15438
Nick Clemens <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] Priority|P5 - low |P3 Severity|enhancement |major --- Comment #1 from Nick Clemens <[email protected]> --- Raising the severity, marking as a bug. Repeated messages will return any one of: borrowernumber firstname surname cardnumber reservedate reservebranch I believe in the code below we are just shoving the issuingimpossible hash into screen_msg and ending with any one of the values: [koha.git] / C4 / SIP / ILS / Transaction / Checkout.pm 67 if (scalar keys %$issuingimpossible) { 68 foreach (keys %$issuingimpossible) { 69 # do something here so we pass these errors 70 $self->screen_msg($_ . ': ' . $issuingimpossible->{$_}); 71 $noerror = 0; 72 } 73 } else { -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. _______________________________________________ Koha-bugs mailing list [email protected] http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs website : http://www.koha-community.org/ git : http://git.koha-community.org/ bugs : http://bugs.koha-community.org/
