http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=13867

--- Comment #1 from M. de Rooy <[email protected]> ---
This is hardcoded in addbiblio:
 if (
            length($value) > 100
            or
            ( C4::Context->preference("marcflavour") eq "UNIMARC" && $tag >=
300
                and $tag < 400 && $subfield eq 'a' )
            or (    $tag >= 500
                and $tag < 600
                && C4::Context->preference("marcflavour") eq "MARC21" )
          )
[ then textarea ... ]

Note that if you save a string of 101 chars and re-edit, you should get a
textarea..
A regex from a syspref instead of the hardcoded 500 and 600 here would be an
idea..

-- 
You are receiving this mail because:
You are watching all bug changes.
_______________________________________________
Koha-bugs mailing list
[email protected]
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/

Reply via email to