Bugzilla – Attachment 81356 Details for
Bug 21673
Koha::Account::Lines->total_outstanding must be used when needed
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 21673: (QA follow-up) Fix typo and remove unused library
Bug-21673-QA-follow-up-Fix-typo-and-remove-unused-.patch (text/plain), 1.32 KB, created by
Tomás Cohen Arazi (tcohen)
on 2018-10-27 11:43:39 UTC
(
hide
)
Description:
Bug 21673: (QA follow-up) Fix typo and remove unused library
Filename:
MIME Type:
Creator:
Tomás Cohen Arazi (tcohen)
Created:
2018-10-27 11:43:39 UTC
Size:
1.32 KB
patch
obsolete
>From 664eeb6b9120287509f36afd16991216f1cc76b2 Mon Sep 17 00:00:00 2001 >From: Tomas Cohen Arazi <tomascohen@theke.io> >Date: Sat, 27 Oct 2018 08:42:52 -0300 >Subject: [PATCH] Bug 21673: (QA follow-up) Fix typo and remove unused library > >Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io> >--- > Koha/Account/Lines.pm | 1 - > opac/opac-user.pl | 2 +- > 2 files changed, 1 insertion(+), 2 deletions(-) > >diff --git a/Koha/Account/Lines.pm b/Koha/Account/Lines.pm >index 66a91c9959..75225fcfeb 100644 >--- a/Koha/Account/Lines.pm >+++ b/Koha/Account/Lines.pm >@@ -18,7 +18,6 @@ package Koha::Account::Lines; > use Modern::Perl; > > use Carp; >-use List::Util qw( sum0 ); > > use Koha::Database; > use Koha::Account::Line; >diff --git a/opac/opac-user.pl b/opac/opac-user.pl >index c83f6d78f1..efb6ca6bbd 100755 >--- a/opac/opac-user.pl >+++ b/opac/opac-user.pl >@@ -208,7 +208,7 @@ if ( $pending_checkouts->count ) { # Useless test > itemnumber => $issue->{itemnumber} > } > ); >- $issue->{rentalfines} = $rental_fines->total_outstanding >+ $issue->{rentalfines} = $rental_fines->total_outstanding; > > my $marcrecord = GetMarcBiblio({ biblionumber => $issue->{'biblionumber'} }); > $issue->{'subtitle'} = GetRecordValue('subtitle', $marcrecord, GetFrameworkCode($issue->{'biblionumber'})); >-- >2.19.1
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 21673
:
81196
|
81355
|
81356
|
81744
|
81745