View | Details | Raw Unified | Return to bug 12380
Collapse All | Expand All

(-)a/cataloguing/additem.pl (-4 / +2 lines)
Lines 154-161 sub generate_subfield_form { Link Here
154
	    my $input = new CGI;
154
	    my $input = new CGI;
155
	    $value = $input->param('barcode');
155
	    $value = $input->param('barcode');
156
	}
156
	}
157
        my $attributes_no_value = qq(tabindex="1" id="$subfield_data{id}" name="field_value" class="input_marceditor" size="50" maxlength="$subfield_data{maxlength}" );
157
        my $attributes_no_value = qq(id="$subfield_data{id}" name="field_value" class="input_marceditor" size="50" maxlength="$subfield_data{maxlength}" );
158
        my $attributes_no_value_textarea = qq(tabindex="1" id="$subfield_data{id}" name="field_value" class="input_marceditor" rows="5" cols="64" );
158
        my $attributes_no_value_textarea = qq(id="$subfield_data{id}" name="field_value" class="input_marceditor" rows="5" cols="64" );
159
        my $attributes          = qq($attributes_no_value value="$value" );
159
        my $attributes          = qq($attributes_no_value value="$value" );
160
        
160
        
161
        if ( $subfieldlib->{authorised_value} ) {
161
        if ( $subfieldlib->{authorised_value} ) {
Lines 224-230 sub generate_subfield_form { Link Here
224
                    -override => 1,
224
                    -override => 1,
225
                    -size     => 1,
225
                    -size     => 1,
226
                    -multiple => 0,
226
                    -multiple => 0,
227
                    -tabindex => 1,
228
                    -id       => "tag_".$tag."_subfield_".$subfieldtag."_".$index_subfield,
227
                    -id       => "tag_".$tag."_subfield_".$subfieldtag."_".$index_subfield,
229
                    -class    => "input_marceditor",
228
                    -class    => "input_marceditor",
230
                );
229
                );
231
- 

Return to bug 12380