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.
---
 opac/opac-detail.pl |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/opac/opac-detail.pl b/opac/opac-detail.pl
index c2909f2..149209c 100755
--- a/opac/opac-detail.pl
+++ b/opac/opac-detail.pl
@@ -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);
 }
-- 
1.5.5.GIT

_______________________________________________
Koha-patches mailing list
[email protected]
http://lists.koha.org/mailman/listinfo/koha-patches

Reply via email to