Bugzilla – Attachment 28101 Details for
Bug 12165
Add description of charges (bug 2546) to Bootstrap OPAC
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 12165: Display record title
Bug-12165-Display-record-title.patch (text/plain), 2.72 KB, created by
Jonathan Druart
on 2014-05-08 14:58:19 UTC
(
hide
)
Description:
Bug 12165: Display record title
Filename:
MIME Type:
Creator:
Jonathan Druart
Created:
2014-05-08 14:58:19 UTC
Size:
2.72 KB
patch
obsolete
>From bdeed74b9799802e4785a9ed4914f070d5ccd0fa Mon Sep 17 00:00:00 2001 >From: Jonathan Druart <jonathan.druart@biblibre.com> >Date: Thu, 8 May 2014 16:55:49 +0200 >Subject: [PATCH] Bug 12165: Display record title > >The code introduced by bug 2546 uses an undefined variable (line.title). >It should be ACCOUNT_LINE.title. > >Signed-off-by: Jonathan Druart <jonathan.druart@biblibre.com> >--- > koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-account.tt | 2 +- > koha-tmpl/opac-tmpl/prog/en/modules/opac-account.tt | 2 +- > 2 files changed, 2 insertions(+), 2 deletions(-) > >diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-account.tt b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-account.tt >index 256a6d3..bbab1d0 100644 >--- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-account.tt >+++ b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-account.tt >@@ -63,7 +63,7 @@ > [% CASE %][% ACCOUNT_LINE.accounttype %] > [%- END -%] > [%- IF ACCOUNT_LINE.description %], [% ACCOUNT_LINE.description %][% END %] >- [% IF line.title %]([% line.title |html_entity %])[% END %] >+ [% IF ACCOUNT_LINE.title %]([% ACCOUNT_LINE.title %])[% END %] > </td> > [% IF ( ACCOUNT_LINE.amountcredit ) %]<td class="credit">[% ELSE %]<td class="debit">[% END %][% ACCOUNT_LINE.amount %]</td> > [% IF ( ACCOUNT_LINE.amountoutstandingcredit ) %]<td class="credit">[% ELSE %]<td class="debit">[% END %][% ACCOUNT_LINE.amountoutstanding %]</td> >diff --git a/koha-tmpl/opac-tmpl/prog/en/modules/opac-account.tt b/koha-tmpl/opac-tmpl/prog/en/modules/opac-account.tt >index c26668c..0fc80ad 100644 >--- a/koha-tmpl/opac-tmpl/prog/en/modules/opac-account.tt >+++ b/koha-tmpl/opac-tmpl/prog/en/modules/opac-account.tt >@@ -54,7 +54,7 @@ > [% CASE %][% ACCOUNT_LINE.accounttype %] > [%- END -%] > [%- IF ACCOUNT_LINE.description %], [% ACCOUNT_LINE.description %][% END %] >- [% IF line.title %]([% line.title |html_entity %])[% END %] >+ [% IF ACCOUNT_LINE.title %]([% ACCOUNT_LINE.title %])[% END %] > </td> > [% IF ( ACCOUNT_LINE.amountcredit ) %]<td class="credit">[% ELSE %]<td class="debit">[% END %][% ACCOUNT_LINE.amount %]</td> > [% IF ( ACCOUNT_LINE.amountoutstandingcredit ) %]<td class="credit">[% ELSE %]<td class="debit">[% END %][% ACCOUNT_LINE.amountoutstanding %]</td> >-- >1.7.10.4
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 12165
:
27821
|
27879
|
28100
| 28101