View | Details | Raw Unified | Return to bug 4527
Collapse All | Expand All

(-)a/catalogue/detail.pl (+3 lines)
Lines 115-120 my $marcurlsarray = GetMarcUrls ($record,$marcflavour); Link Here
115
my $marchostsarray  = GetMarcHosts($record,$marcflavour);
115
my $marchostsarray  = GetMarcHosts($record,$marcflavour);
116
my $subtitle         = GetRecordValue('subtitle', $record, $fw);
116
my $subtitle         = GetRecordValue('subtitle', $record, $fw);
117
117
118
# Turn newlines into HTML-y newlines
119
$_->{marcnote} =~ s{\n}{<br />}g foreach (@$marcnotesarray);
120
118
# Get Branches, Itemtypes and Locations
121
# Get Branches, Itemtypes and Locations
119
my $branches = GetBranches();
122
my $branches = GetBranches();
120
my $itemtypes = GetItemTypes();
123
my $itemtypes = GetItemTypes();
(-)a/opac/opac-detail.pl (-1 / +4 lines)
Lines 542-547 my $marcurlsarray = GetMarcUrls ($record,$marcflavour); Link Here
542
my $marchostsarray  = GetMarcHosts($record,$marcflavour);
542
my $marchostsarray  = GetMarcHosts($record,$marcflavour);
543
my $subtitle         = GetRecordValue('subtitle', $record, GetFrameworkCode($biblionumber));
543
my $subtitle         = GetRecordValue('subtitle', $record, GetFrameworkCode($biblionumber));
544
544
545
# Support newlines in the notes content
546
$_->{marcnote} =~ s{\n}{<br />}g foreach (@$marcnotesarray);
547
548
545
    $template->param(
549
    $template->param(
546
                     MARCNOTES               => $marcnotesarray,
550
                     MARCNOTES               => $marcnotesarray,
547
                     MARCSUBJCTS             => $marcsubjctsarray,
551
                     MARCSUBJCTS             => $marcsubjctsarray,
548
- 

Return to bug 4527