Bugzilla – Attachment 59250 Details for
Bug 15460
Bug 13381 accidentally removed spaces after subfields c and h of 245
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 15460 Adding spaces after subfields c and h of 245
Bug-15460-Adding-spaces-after-subfields-c-and-h-of.patch (text/plain), 6.10 KB, created by
Kyle M Hall (khall)
on 2017-01-19 13:35:35 UTC
(
hide
)
Description:
Bug 15460 Adding spaces after subfields c and h of 245
Filename:
MIME Type:
Creator:
Kyle M Hall (khall)
Created:
2017-01-19 13:35:35 UTC
Size:
6.10 KB
patch
obsolete
>From 8fcfdf6853267d81f644e8f32f647dc192f5ab86 Mon Sep 17 00:00:00 2001 >From: Caitlin Goodger <caitlingoodger.student@wegc.school.nz> >Date: Tue, 17 Jan 2017 22:41:52 +0000 >Subject: [PATCH] Bug 15460 Adding spaces after subfields c and h of 245 > >Test Plan >1: Add something inside c and h of 245 on a Bibliographic Record. There won't be a space between >the c and h >2: This will occur on both the search results and the details pages of >the record in both the intranet and opac. >3: Apply the patch >4: Refresh and see that there is now a space between c and h. > >Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> > >Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com> >--- > koha-tmpl/intranet-tmpl/prog/en/xslt/MARC21slim2intranetDetail.xsl | 4 ++-- > koha-tmpl/intranet-tmpl/prog/en/xslt/MARC21slim2intranetResults.xsl | 4 ++-- > koha-tmpl/opac-tmpl/bootstrap/en/xslt/MARC21slim2OPACDetail.xsl | 4 ++-- > koha-tmpl/opac-tmpl/bootstrap/en/xslt/MARC21slim2OPACResults.xsl | 4 ++-- > 4 files changed, 8 insertions(+), 8 deletions(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/xslt/MARC21slim2intranetDetail.xsl b/koha-tmpl/intranet-tmpl/prog/en/xslt/MARC21slim2intranetDetail.xsl >index 162c148..5ebecbf 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/xslt/MARC21slim2intranetDetail.xsl >+++ b/koha-tmpl/intranet-tmpl/prog/en/xslt/MARC21slim2intranetDetail.xsl >@@ -122,11 +122,11 @@ > <xsl:choose> > <xsl:when test="@code='h'"> > <!-- 13381 Span class around subfield h so it can be suppressed via css --> >- <span class="title_medium"><xsl:apply-templates/> </span> >+ <span class="title_medium"><xsl:apply-templates/> <xsl:text> </xsl:text> </span> > </xsl:when> > <xsl:when test="@code='c'"> > <!-- 13381 Span class around subfield c so it can be suppressed via css --> >- <span class="title_resp_stmt"><xsl:apply-templates/> </span> >+ <span class="title_resp_stmt"><xsl:apply-templates/> <xsl:text> </xsl:text> </span> > </xsl:when> > <xsl:otherwise> > <xsl:apply-templates/> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/xslt/MARC21slim2intranetResults.xsl b/koha-tmpl/intranet-tmpl/prog/en/xslt/MARC21slim2intranetResults.xsl >index 23af29c..6185c2d 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/xslt/MARC21slim2intranetResults.xsl >+++ b/koha-tmpl/intranet-tmpl/prog/en/xslt/MARC21slim2intranetResults.xsl >@@ -320,11 +320,11 @@ > <xsl:choose> > <xsl:when test="@code='h'"> > <!-- 13381 Span class around subfield h so it can be suppressed via css --> >- <span class="title_medium"><xsl:apply-templates/> </span> >+ <span class="title_medium"><xsl:apply-templates/> <xsl:text> </xsl:text> </span> > </xsl:when> > <xsl:when test="@code='c'"> > <!-- 13381 Span class around subfield c so it can be suppressed via css --> >- <span class="title_resp_stmt"><xsl:apply-templates/> </span> >+ <span class="title_resp_stmt"><xsl:apply-templates/> <xsl:text> </xsl:text> </span> > </xsl:when> > <xsl:otherwise> > <xsl:apply-templates/> >diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/xslt/MARC21slim2OPACDetail.xsl b/koha-tmpl/opac-tmpl/bootstrap/en/xslt/MARC21slim2OPACDetail.xsl >index c62d004..6bc54b1 100644 >--- a/koha-tmpl/opac-tmpl/bootstrap/en/xslt/MARC21slim2OPACDetail.xsl >+++ b/koha-tmpl/opac-tmpl/bootstrap/en/xslt/MARC21slim2OPACDetail.xsl >@@ -136,11 +136,11 @@ > <xsl:choose> > <xsl:when test="@code='h'"> > <!-- 13381 Span class around subfield h so it can be suppressed via css --> >- <span class="title_medium"><xsl:apply-templates/> </span> >+ <span class="title_medium"><xsl:apply-templates/> <xsl:text> </xsl:text> </span> > </xsl:when> > <xsl:when test="@code='c'"> > <!-- 13381 Span class around subfield c so it can be suppressed via css --> >- <span class="title_resp_stmt"><xsl:apply-templates/> </span> >+ <span class="title_resp_stmt"><xsl:apply-templates/> <xsl:text> </xsl:text> </span> > </xsl:when> > <xsl:otherwise> > <xsl:apply-templates/> >diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/xslt/MARC21slim2OPACResults.xsl b/koha-tmpl/opac-tmpl/bootstrap/en/xslt/MARC21slim2OPACResults.xsl >index 353b08e..7349b81 100644 >--- a/koha-tmpl/opac-tmpl/bootstrap/en/xslt/MARC21slim2OPACResults.xsl >+++ b/koha-tmpl/opac-tmpl/bootstrap/en/xslt/MARC21slim2OPACResults.xsl >@@ -428,11 +428,11 @@ > <xsl:choose> > <xsl:when test="@code='h'"> > <!-- 13381 Span class around subfield h so it can be suppressed via css --> >- <span class="title_medium"><xsl:apply-templates/> </span> >+ <span class="title_medium"><xsl:apply-templates/> <xsl:text> </xsl:text> </span> > </xsl:when> > <xsl:when test="@code='c'"> > <!-- 13381 Span class around subfield c so it can be suppressed via css --> >- <span class="title_resp_stmt"><xsl:apply-templates/> </span> >+ <span class="title_resp_stmt"><xsl:apply-templates/> <xsl:text> </xsl:text> </span> > </xsl:when> > <xsl:otherwise> > <xsl:apply-templates/> >-- >2.1.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 15460
:
59118
|
59122
| 59250