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

(-)a/cataloguing/addbiblio.pl (-15 / +1 lines)
Lines 467-487 sub create_input { Link Here
467
                    value=\"$value\" \/>
467
                    value=\"$value\" \/>
468
            ";
468
            ";
469
    }
469
    }
470
    elsif ( $tagslib->{$tag}->{$subfield}->{'hidden'} ) {
471
        $subfield_data{marc_value} =
472
            "<input type=\"text\"
473
                    id=\"".$subfield_data{id}."\"
474
                    name=\"".$subfield_data{id}."\"
475
                    class=\"input_marceditor\"
476
                    tabindex=\"1\"
477
                    size=\"67\"
478
                    maxlength=\"$max_length\"
479
                    value=\"$value\"
480
            \/>";
481
482
        # it's a standard field
483
    }
484
    else {
470
    else {
471
        # it's a standard field
485
        if (
472
        if (
486
            length($value) > 100
473
            length($value) > 100
487
            or
474
            or
488
- 

Return to bug 7355