Bugzilla – Attachment 36377 Details for
Bug 13605
_AUTHOR_ not replaced in relatives checkouts
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
[PASSED QA] Bug 13605 - _AUTHOR_ not replaced in relatives checkouts
PASSED-QA-Bug-13605---AUTHOR-not-replaced-in-relat.patch (text/plain), 1.46 KB, created by
Katrin Fischer
on 2015-03-03 10:15:28 UTC
(
hide
)
Description:
[PASSED QA] Bug 13605 - _AUTHOR_ not replaced in relatives checkouts
Filename:
MIME Type:
Creator:
Katrin Fischer
Created:
2015-03-03 10:15:28 UTC
Size:
1.46 KB
patch
obsolete
>From 0ed3d4b36e137fec39f6917e7bcb1eaf493e4502 Mon Sep 17 00:00:00 2001 >From: Fridolin Somers <fridolin.somers@biblibre.com> >Date: Wed, 21 Jan 2015 10:22:19 +0100 >Subject: [PATCH] [PASSED QA] Bug 13605 - _AUTHOR_ not replaced in relatives > checkouts > >In members/moremember.pl, in relatives checkouts tab, "by _AUTHOR_" appears before author. >This code sould be replaced in JS. > >Test plan : >- Go to a borrower with relative's checkouts >=> without patch : you see "by _AUTHOR_" string before author name >=> with patch : you see "by" string before author name > >Signed-off-by: Brendan Gallagher <brendan@bywatersolutions.com> >Signed-off-by: Katrin Fischer <Katrin.Fischer.83@web.de> >Works as described, fixes the problem. >--- > koha-tmpl/intranet-tmpl/prog/en/js/checkouts.js | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/js/checkouts.js b/koha-tmpl/intranet-tmpl/prog/en/js/checkouts.js >index 71d2be2..65cf43d 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/js/checkouts.js >+++ b/koha-tmpl/intranet-tmpl/prog/en/js/checkouts.js >@@ -465,7 +465,7 @@ $(document).ready(function() { > title += "</a></span>"; > > if ( oObj.author ) { >- title += " " + BY + " " + oObj.author; >+ title += " " + BY.replace( "_AUTHOR_", " " + oObj.author ); > } > > if ( oObj.itemnotes ) { >-- >1.9.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 13605
:
35431
|
36151
| 36377