From 69bfcdb55aab9a72fda7adc992b3c5b67fec0836 Mon Sep 17 00:00:00 2001 From: Marcel de Rooy Date: Sat, 23 May 2015 14:01:57 +0200 Subject: [PATCH] Bug 12176: Fix for missing field_value in select Content-Type: text/plain; charset=utf-8 As Jonathan Druart discovered, we were still missing an important attribute in the selects. Var mv.name was not filled, so the name was empty with nice side-effects :) While fixing this, it was also possible to delete some unused vars that Bernardo already mentioned before: $attributes and $attributes_no_value. Signed-off-by: Marcel de Rooy --- cataloguing/additem.pl | 12 ------------ .../intranet-tmpl/prog/en/modules/cataloguing/additem.tt | 4 ++-- 2 files changed, 2 insertions(+), 14 deletions(-) diff --git a/cataloguing/additem.pl b/cataloguing/additem.pl index 8a800e1..38f5d92 100755 --- a/cataloguing/additem.pl +++ b/cataloguing/additem.pl @@ -154,7 +154,6 @@ sub generate_subfield_form { my $input = new CGI; $value = $input->param('barcode'); } - my $attributes_no_value = qq(id="$subfield_data{id}" name="field_value" class="input_marceditor" size="50" maxlength="$subfield_data{maxlength}" ); # Getting list of subfields to keep when restricted editing is enabled my $subfieldsToAllowForRestrictedEditing = C4::Context->preference('SubfieldsToAllowForRestrictedEditing'); @@ -164,17 +163,6 @@ sub generate_subfield_form { ) ? 1 : 0; my @subfieldsToAllow = split(/ /, $subfieldsToAllowForRestrictedEditing); - # If we're on restricted editing, and our field is not in the list of subfields to allow, - # then it is read-only - $attributes_no_value .= 'readonly="readonly" ' - if ( - not $allowAllSubfields - and $restrictededition - and !grep { $tag . '$' . $subfieldtag eq $_ } @subfieldsToAllow - ); - - my $attributes = qq($attributes_no_value value="$value" ); - if ( $subfieldlib->{authorised_value} ) { my @authorised_values; my %authorised_lib; diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/additem.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/additem.tt index b6eedf6..8c4f419 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/additem.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/additem.tt @@ -231,9 +231,9 @@ $(document).ready(function() { [% ELSIF ( mv.type == 'select' ) %] [% IF ( mv.readonlyselect ) %] - [% ELSE %] - [% END %] [% FOREACH aval IN mv.values %] [% IF aval == mv.default %] -- 1.7.10.4