Browse Source

Revert "Bug 3226 - Extended characters inconsistantly displayed"

This reverts commit 1ddb5df863.
3.2.x
Galen Charlton 15 years ago
parent
commit
7013085ca5
  1. 2
      C4/Context.pm
  2. 3
      C4/Search.pm

2
C4/Context.pm

@ -588,7 +588,7 @@ sub _new_Zconn {
my $tried=0; # first attempt
my $Zconn; # connection object
$server = "biblioserver" unless $server;
$syntax = "xml" unless $syntax;
$syntax = "usmarc" unless $syntax;
my $host = $context->{'listen'}->{$server}->{'content'};
my $servername = $context->{"config"}->{$server};

3
C4/Search.pm

@ -1237,8 +1237,7 @@ sub searchResults {
my $marcflavour = C4::Context->preference("marcflavour");
# loop through all of the records we've retrieved
for ( my $i = $offset ; $i <= $times - 1 ; $i++ ) {
my $marcrecord =
MARC::Record::new_from_xml( $marcresults[$i], "utf8", $marcflavour );
my $marcrecord = MARC::File::USMARC::decode( $marcresults[$i] );
my $oldbiblio = TransformMarcToKoha( $dbh, $marcrecord, '' );
$oldbiblio->{subtitle} = C4::Biblio::get_koha_field_from_marc('bibliosubtitle', 'subtitle', $marcrecord, '');
$oldbiblio->{result_number} = $i + 1;

Loading…
Cancel
Save