|
Lines 71-77
if ($view eq 'card' || $view eq 'html') {
Link Here
|
| 71 |
$xslfile = "compact.xsl"; |
71 |
$xslfile = "compact.xsl"; |
| 72 |
} |
72 |
} |
| 73 |
else { # must be html |
73 |
else { # must be html |
| 74 |
$xslfile = C4::Context->preference('marcflavour') . "slim2OPACMARCdetail.xsl"; |
74 |
$xslfile = 'plainMARC.xsl'; |
| 75 |
} |
75 |
} |
| 76 |
$xslfilename = "$htdocs/$theme/$lang/xslt/$xslfile"; |
76 |
$xslfilename = "$htdocs/$theme/$lang/xslt/$xslfile"; |
| 77 |
$xslfilename = "$htdocs/$theme/en/xslt/$xslfile" unless ( $lang ne 'en' && -f $xslfilename ); |
77 |
$xslfilename = "$htdocs/$theme/en/xslt/$xslfile" unless ( $lang ne 'en' && -f $xslfilename ); |
| 78 |
- |
|
|