[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Koha-devel] Bug in Koha 2.2.3
From: |
Paul POULAIN |
Subject: |
[Koha-devel] Bug in Koha 2.2.3 |
Date: |
Mon Jul 25 07:55:23 2005 |
User-agent: |
Mozilla Thunderbird 1.0.2 (X11/20050317) |
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)
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Koha-devel] Bug in Koha 2.2.3,
Paul POULAIN <=