bug 2545: fix XSLTDetailsDisplay
authorGalen Charlton <galen.charlton@liblime.com>
Fri, 22 Aug 2008 00:59:45 +0000 (19:59 -0500)
committerGalen Charlton <galen.charlton@liblime.com>
Mon, 25 Aug 2008 16:29:24 +0000 (11:29 -0500)
Corrected so that when XSLTDetailsDisplay is ON but
XSLTResultsDisplay is OFF, the portion of the OPAC bib
details page that's derived from the MARC bib record
is no longer missing.

Signed-off-by: Galen Charlton <galen.charlton@liblime.com>
opac/opac-detail.pl

index c2909f2..149209c 100755 (executable)
@@ -59,7 +59,7 @@ my ( $template, $borrowernumber, $cookie ) = get_template_and_user(
 my $biblionumber = $query->param('biblionumber') || $query->param('bib');
 $template->param( biblionumber => $biblionumber );
 # XSLT processing of some stuff
-if (C4::Context->preference("XSLTResultsDisplay") ) {
+if (C4::Context->preference("XSLTDetailsDisplay") ) {
     my $newxmlrecord = XSLTParse4Display($biblionumber,C4::Context->config('opachtdocs')."/prog/en/xslt/MARC21slim2OPACDetail.xsl");
     $template->param('XSLTBloc' => $newxmlrecord);
 }