koha-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Koha-cvs] koha C4/Circulation/Circ2.pm catalogue/moredeta... [rel_3_0]


From: Antoine Farnault
Subject: [Koha-cvs] koha C4/Circulation/Circ2.pm catalogue/moredeta... [rel_3_0]
Date: Mon, 11 Dec 2006 11:10:12 +0000

CVSROOT:        /sources/koha
Module name:    koha
Branch:         rel_3_0
Changes by:     Antoine Farnault <toins>        06/12/11 11:10:12

Modified files:
        C4/Circulation : Circ2.pm 
        catalogue      : moredetail.pl 

Log message:
        itemissues wasn't exported by Circ2.pm

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/koha/C4/Circulation/Circ2.pm?cvsroot=koha&only_with_tag=rel_3_0&r1=1.114.2.24&r2=1.114.2.25
http://cvs.savannah.gnu.org/viewcvs/koha/catalogue/moredetail.pl?cvsroot=koha&only_with_tag=rel_3_0&r1=1.4.2.5&r2=1.4.2.6

Patches:
Index: C4/Circulation/Circ2.pm
===================================================================
RCS file: /sources/koha/koha/C4/Circulation/Circ2.pm,v
retrieving revision 1.114.2.24
retrieving revision 1.114.2.25
diff -u -b -r1.114.2.24 -r1.114.2.25
--- C4/Circulation/Circ2.pm     7 Dec 2006 16:00:41 -0000       1.114.2.24
+++ C4/Circulation/Circ2.pm     11 Dec 2006 11:10:12 -0000      1.114.2.25
@@ -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: Circ2.pm,v 1.114.2.24 2006/12/07 16:00:41 hdl Exp $
+# $Id: Circ2.pm,v 1.114.2.25 2006/12/11 11:10:12 toins Exp $
 
 use strict;
 require Exporter;
@@ -39,7 +39,7 @@
 use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
 
 # set the version for version checking
-$VERSION = do { my @v = '$Revision: 1.114.2.24 $' =~ /\d+/g; 
shift(@v).".".join( "_", map { sprintf "%03d", $_ } @v ); };
+$VERSION = do { my @v = '$Revision: 1.114.2.25 $' =~ /\d+/g; 
shift(@v).".".join( "_", map { sprintf "%03d", $_ } @v ); };
 
 =head1 NAME
 
@@ -91,6 +91,7 @@
   &GetIssuesFromBiblio
   &AnonymiseIssueHistory
   &GetLostItems
+  &itemissues
 );
 
 =head2 itemseen

Index: catalogue/moredetail.pl
===================================================================
RCS file: /sources/koha/koha/catalogue/moredetail.pl,v
retrieving revision 1.4.2.5
retrieving revision 1.4.2.6
diff -u -b -r1.4.2.5 -r1.4.2.6
--- catalogue/moredetail.pl     5 Dec 2006 11:35:30 -0000       1.4.2.5
+++ catalogue/moredetail.pl     11 Dec 2006 11:10:12 -0000      1.4.2.6
@@ -1,7 +1,4 @@
 #!/usr/bin/perl
-# NOTE: Use standard 8-space tabs for this file (indents are 4 spaces)
-
-# $Id: moredetail.pl,v 1.4.2.5 2006/12/05 11:35:30 toins Exp $
 
 # Copyright 2000-2003 Katipo Communications
 #
@@ -20,7 +17,8 @@
 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
 # Suite 330, Boston, MA  02111-1307 USA
 
-use HTML::Template;
+# $Id: moredetail.pl,v 1.4.2.6 2006/12/11 11:10:12 toins Exp $
+
 use strict;
 require Exporter;
 use C4::Koha;
@@ -31,6 +29,7 @@
 use C4::Auth;
 use C4::Interface::CGI::Output;
 use C4::Date;
+use C4::Circulation::Circ2;  # to use itemissues
 
 my $query=new CGI;
 
@@ -68,7 +67,7 @@
 
 my @results;
 
-my (@items)=itemissues($bi);
+my (@items)= itemissues($bi);
 my address@hidden;
 $data->{'count'}=$count;
 
@@ -104,7 +103,3 @@
 
 output_html_with_http_headers $query, $cookie, $template->output;
 
-
-# Local Variables:
-# tab-width: 8
-# End:




reply via email to

[Prev in Thread] Current Thread [Next in Thread]