[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Koha-bugs] [Bug 1230] On editing marc entry: Publisher fields(tag 260)
From: |
bugzilla-daemon |
Subject: |
[Koha-bugs] [Bug 1230] On editing marc entry: Publisher fields(tag 260) NOT stored as utf8 in mysql |
Date: |
Sun, 10 Dec 2006 02:04:39 +1300 (NZDT) |
http://bugs.koha.org/cgi-bin/bugzilla/show_bug.cgi?id=1230
address@hidden changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |address@hidden
------- Comment #14 from address@hidden 2006-12-10 02:04 -------
I added the following code to *MAIN* section of addbiblio.pl
(just after the declarations)
<code>
open (OUT,">/tmp/ookk.$$");
print OUT `date` ;
my $pubname ;
my @mytags = $input->param('tag');
my @mysubfields = $input->param('subfield');
my @myvalues = $input->param('field_value');
my $i;
for($i=0;$i<$#mytags;$i++) {
if ($mytags[$i] eq '260' and $mysubfields[$i] eq 'b') {
$pubname = $myvalues[$i] ;
}
}
print OUT "Pubname: " . $pubname . "\n" ;
close OUT;
</code>
On the browser I do the following:
* Retrieve a record from Catalogue
* click on "Edit Biblio"
* update the existing biblio record
* Click on "Save Bibliographic record and go to items"
The Output of the /tmp/ookk.* file:
<output>
Sat Dec 9 18:22:38 IST 2006
Pubname: ஆரூரன1்
</output>
(This is the expected output)
However the same field in
mysql's biblioitems table
changes to junk
Are they two different variables or
is it an issue with db commit ?
------- You are receiving this mail because: -------
You are the QA contact for the bug, or are watching the QA contact.
- [Koha-bugs] [Bug 1230] On editing marc entry: Publisher fields(tag 260) NOT stored as utf8 in mysql,
bugzilla-daemon <=