Bugzilla – Attachment 170864 Details for
Bug 37753
Navigation links when editing authority type subfields are in plain text instead of the tabbed style
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 37753: Fixed navigation links when editing authority type subfields
Bug-37753-Fixed-navigation-links-when-editing-auth.patch (text/plain), 2.64 KB, created by
Jonathan Druart
on 2024-08-29 10:53:51 UTC
(
hide
)
Description:
Bug 37753: Fixed navigation links when editing authority type subfields
Filename:
MIME Type:
Creator:
Jonathan Druart
Created:
2024-08-29 10:53:51 UTC
Size:
2.64 KB
patch
obsolete
>From b8b70aa0524449577e31e173734b4105f107e801 Mon Sep 17 00:00:00 2001 >From: Eric Garcia <cubingguy714@gmail.com> >Date: Wed, 28 Aug 2024 16:00:46 +0000 >Subject: [PATCH] Bug 37753: Fixed navigation links when editing authority type > subfields > >To test: >1. Go to Koha administration > Catalog > Authority types. >2. For any authority type, select Actions > MARC structure. >3. For any tag that has multiple subfields (for example 020 ISBN), select Actions > Subfields. >4. Select Edit for any subfield. >5. Notice that the links are now in the standard tabbed style. > >Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org> >--- > .../prog/en/modules/admin/auth_subfields_structure.tt | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/auth_subfields_structure.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/auth_subfields_structure.tt >index 5ae1f286403..c43c391d7ae 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/auth_subfields_structure.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/auth_subfields_structure.tt >@@ -120,9 +120,9 @@ > [% FOREACH loo IN loop %] > <li role="presentation" id="tab_subfield_[%- PROCESS outputsubfield subfieldanchor = loo.tagsubfield -%]"> > [% IF ( loo.new_subfield ) %] >- <a href="#sub[%- PROCESS outputsubfield subfieldanchor = loo.tagsubfield -%]field" aria-controls="sub[%- PROCESS outputsubfield subfieldanchor = loo.tagsubfield -%]field" role="tab" data-bs-toggle="tab" title="[% loo.liblibrarian | html %]">New</a> >+ <a href="#sub[%- PROCESS outputsubfield subfieldanchor = loo.tagsubfield -%]field" class="nav-link" aria-controls="sub[%- PROCESS outputsubfield subfieldanchor = loo.tagsubfield -%]field" role="tab" data-bs-toggle="tab" title="[% loo.liblibrarian | html %]">New</a> > [% ELSE %] >- <a href="#sub[%- PROCESS outputsubfield subfieldanchor = loo.tagsubfield -%]field" aria-controls="sub[%- PROCESS outputsubfield subfieldanchor = loo.tagsubfield -%]field" role="tab" data-bs-toggle="tab" title="[% loo.liblibrarian | html %]">[% loo.tagsubfield | html %]</a> >+ <a href="#sub[%- PROCESS outputsubfield subfieldanchor = loo.tagsubfield -%]field" class="nav-link" aria-controls="sub[%- PROCESS outputsubfield subfieldanchor = loo.tagsubfield -%]field" role="tab" data-bs-toggle="tab" title="[% loo.liblibrarian | html %]">[% loo.tagsubfield | html %]</a> > [% END %] > </li> > [% END %] >-- >2.34.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 37753
:
170827
| 170864