[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Koha-cvs] koha/serials serials-edit.pl
From: |
Henri-Damien LAURENT |
Subject: |
[Koha-cvs] koha/serials serials-edit.pl |
Date: |
Fri, 18 May 2007 09:25:06 +0000 |
CVSROOT: /cvsroot/koha
Module name: koha
Changes by: Henri-Damien LAURENT <hdl> 07/05/18 09:25:06
Modified files:
serials : serials-edit.pl
Log message:
Adding bibliotitle information to display
CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/koha/serials/serials-edit.pl?cvsroot=koha&r1=1.6&r2=1.7
Patches:
Index: serials-edit.pl
===================================================================
RCS file: /cvsroot/koha/koha/serials/serials-edit.pl,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -b -r1.6 -r1.7
--- serials-edit.pl 27 Apr 2007 14:00:48 -0000 1.6
+++ serials-edit.pl 18 May 2007 09:25:06 -0000 1.7
@@ -17,7 +17,7 @@
# Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
# Suite 330, Boston, MA 02111-1307 USA
-# $Id: serials-edit.pl,v 1.6 2007/04/27 14:00:48 hdl Exp $
+# $Id: serials-edit.pl,v 1.7 2007/05/18 09:25:06 hdl Exp $
=head1 NAME
@@ -117,6 +117,7 @@
$data->{planneddate}=format_date($data->{planneddate});
push @serialdatalist,$data;
}
+my $bibdata=GetBiblioData($serialdatalist[0]->{'biblionumber'});
my @newserialloop;
my @subscriptionloop;
@@ -249,6 +250,7 @@
$template->param(
+ bibliotitle => $bibdata->{'title'},
biblionumber =>$serialdatalist[0]->{'biblionumber'},
serialslist => address@hidden,
intranetcolorstylesheet =>
C4::Context->preference("intranetcolorstylesheet"),
- [Koha-cvs] koha/serials serials-edit.pl,
Henri-Damien LAURENT <=