Browse Source

Bug 3317: Author displaying inconsistently or not at all. Revision to previous patch.

Revision to previous patch for bug 3317.  Removes the EXPR command from opac-basket.tmpl, which was polluting the apache logs.

NTS: Don't use EXPR.

Signed-off-by: Galen Charlton <galen.charlton@liblime.com>
3.2.x
Garry Collum 15 years ago
committed by Galen Charlton
parent
commit
ee167345d7
  1. 4
      koha-tmpl/opac-tmpl/prog/en/modules/opac-basket.tmpl
  2. 6
      opac/opac-basket.pl

4
koha-tmpl/opac-tmpl/prog/en/modules/opac-basket.tmpl

@ -168,8 +168,8 @@ function tagAdded() {
<td><!-- TMPL_VAR NAME="isbn" --></td>
</tr>
<!-- /TMPL_IF -->
<!-- TMPL_IF EXPR="MARCAUTHORS || author" -->
<!-- TMPL_IF "HASAUTHORS" -->
<tr>
<th scope="row">Author(s)</th>
<td>

6
opac/opac-basket.pl

@ -68,6 +68,11 @@ foreach my $biblionumber ( @bibs ) {
my $marcseriesarray = GetMarcSeries ($record,$marcflavour);
my $marcurlsarray = GetMarcUrls ($record,$marcflavour);
my @items = &GetItemsInfo( $biblionumber, 'opac' );
my $hasauthors = 0;
if($dat->{'author'} || @$marcauthorsarray) {
$hasauthors = 1;
}
my $shelflocations =GetKohaAuthorisedValues('items.location',$dat->{'frameworkcode'});
my $collections = GetKohaAuthorisedValues('items.ccode',$dat->{'frameworkcode'} );
@ -96,6 +101,7 @@ foreach my $biblionumber ( @bibs ) {
$dat->{MARCAUTHORS} = $marcauthorsarray;
$dat->{MARCSERIES} = $marcseriesarray;
$dat->{MARCURLS} = $marcurlsarray;
$dat->{HASAUTHORS} = $hasauthors;
if ( C4::Context->preference("BiblioDefaultView") eq "normal" ) {
$dat->{dest} = "opac-detail.pl";

Loading…
Cancel
Save