Hello all, A french UNIMARC library has found a bug that could affect everybody : In Koha, when MARC=ON, if a field is more than 200 characters, the MARC editor shows it in a textarea of 5 lines instead of a single line. There is a small & stupid bug that makes the modif of such a biblio buggy (all the values after the 1st textarea will be lost :-( ) to fix it, just go to : $KOHA/cgi-bin/acqui.simple/, and modify addbiblio.pl, ligne 201 : Replace $subfield_data{marc_value}="<textarea name=\"fieldvalue\" cols=\"50\" rows=\"5\" >$value</textarea>"; by $subfield_data{marc_value}="<textarea name=\"field_value\" cols=\"50\" rows=\"5\" >$value</textarea>"; (yes, just one _ missing...) -- Paul POULAIN Consultant indépendant en logiciels libres responsable francophone de koha (SIGB libre http://www.koha-fr.org) _______________________________________________ Koha mailing list Koha@lists.katipo.co.nz http://lists.katipo.co.nz/mailman/listinfo/koha
participants (1)
-
Paul POULAIN