[Koha-cvs] koha/opac opac-ISBDdetail.pl

Joshua Ferraro jmf at kados.org
Sun May 21 03:54:13 CEST 2006


CVSROOT:	/sources/koha
Module name:	koha
Branch: 	
Changes by:	Joshua Ferraro <kados at savannah.gnu.org>	06/05/21 01:54:13

Modified files:
	opac           : opac-ISBDdetail.pl 

Log message:
	merging dev-week and HEAD

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/koha/koha/opac/opac-ISBDdetail.pl.diff?tr1=1.12&tr2=1.13&r1=text&r2=text

Patches:
Index: koha/opac/opac-ISBDdetail.pl
diff -u koha/opac/opac-ISBDdetail.pl:1.12 koha/opac/opac-ISBDdetail.pl:1.13
--- koha/opac/opac-ISBDdetail.pl:1.12	Tue Feb 21 00:11:06 2006
+++ koha/opac/opac-ISBDdetail.pl	Sun May 21 01:54:13 2006
@@ -71,7 +71,7 @@
 my $itemtype="";
 my $tagslib = &MARCgettagslib($dbh,1,$itemtype);
 
-my $record =get_record($biblionumber);
+my $record =MARCgetbiblio($dbh,$bibid);
 
 #coping with subscriptions
 my $subscriptionsnumber = getsubscriptionfrombiblionumber($biblionumber);
@@ -95,9 +95,7 @@
 			     authnotrequired => 1,
 			     debug => 1,
 			     });
-$template->param(LibraryName => C4::Context->preference("LibraryName"),
-				suggestion => C4::Context->preference("suggestion"),
-				virtualshelves => C4::Context->preference("virtualshelves"),
+$template->param(
 				subscriptions => \@subs,
 				subscriptionsnumber => $subscriptionsnumber,
 );
@@ -167,7 +165,7 @@
 
    #---- branch
     if ($tagslib->{$tag}->{$subfield}->{'authorised_value'} eq "branches" ) {
-       return getbranchdetail($value)->{branchname};
+       return getbranchname($value);
     }
 
    #---- itemtypes





More information about the Koha-cvs mailing list