Silence warnings if there are <10 transactions
This commit is contained in:
parent
8998566068
commit
e748566913
1 changed files with 1 additions and 1 deletions
|
@ -80,7 +80,7 @@ sub log_for :Tab(USERS) ($self, $cart, $input, @) {
|
|||
sub _recent($n, $u) {
|
||||
$n += 0;
|
||||
print "Last $n transactions for $u:\n";
|
||||
print +(_grep($u))[-$n .. -1];
|
||||
print grep defined, +(_grep($u))[-$n .. -1];
|
||||
}
|
||||
|
||||
sub balance($self, $u) {
|
||||
|
|
Loading…
Add table
Reference in a new issue