Bugzilla – Attachment 138231 Details for
Bug 31238
Unable to save authorised value to frameworks subfields
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 31238: Fix typo in marc_subfields_structure.pl
Bug-31238-Fix-typo-in-marcsubfieldsstructurepl.patch (text/plain), 1.78 KB, created by
Victor Grousset/tuxayo
on 2022-07-28 21:11:40 UTC
(
hide
)
Description:
Bug 31238: Fix typo in marc_subfields_structure.pl
Filename:
MIME Type:
Creator:
Victor Grousset/tuxayo
Created:
2022-07-28 21:11:40 UTC
Size:
1.78 KB
patch
obsolete
>From 6cc7eedfac3ae81beedfd11e52ff3932f1b6b45c Mon Sep 17 00:00:00 2001 >From: Emmi Takkinen <emmi.takkinen@koha-suomi.fi> >Date: Tue, 26 Jul 2022 12:02:16 +0300 >Subject: [PATCH] Bug 31238: Fix typo in marc_subfields_structure.pl >MIME-Version: 1.0 >Content-Type: text/plain; charset=UTF-8 >Content-Transfer-Encoding: 8bit > >After bug 29001 one is unable to save authorised value to frameworks >subfields. This is caused by minor typo in marc_subfields_structure.pl. > >To test: >1. Edit e.g. default frameworks subfield 952$8 >2. Add or change fields authorised value >3. Save your changes >=> note that on subfield listing there is no mention that 952$8 is linked to any authorised value >=> if you edit 952$8 authorised value input is empty >4. Apply this patch. >5. Repeat steps 1.-3. >=> authorised value should now be saved > >Sponsored-by: Koha-Suomi Oy > >Signed-off-by: Emmanuel Bétemps <e.betemps@gmail.com> >Signed-off-by: Victor Grousset/tuxayo <victor@tuxayo.net> >--- > admin/marc_subfields_structure.pl | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > >diff --git a/admin/marc_subfields_structure.pl b/admin/marc_subfields_structure.pl >index 6f14212280..a2755df645 100755 >--- a/admin/marc_subfields_structure.pl >+++ b/admin/marc_subfields_structure.pl >@@ -228,7 +228,7 @@ elsif ( $op eq 'add_validate' ) { > my $kohafield = $input->param("kohafield_$id"); > my $tab = $input->param("tab_$id"); > my $seealso = $input->param("seealso_$id"); >- my $authorised_value = $input->param("authorised_values_$id"); >+ my $authorised_value = $input->param("authorised_value_$id"); > my $authtypecode = $input->param("authtypecodes_$id"); > my $value_builder = $input->param("value_builder_$id"); > my $hidden = $input->param("hidden_$id"); >-- >2.37.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 31238
:
138119
|
138125
| 138231