koha-cvs
[Top][All Lists]
Advanced

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

[Koha-cvs] koha/C4 Members.pm [rel_3_0]


From: Antoine Farnault
Subject: [Koha-cvs] koha/C4 Members.pm [rel_3_0]
Date: Wed, 15 Nov 2006 09:07:20 +0000

CVSROOT:        /sources/koha
Module name:    koha
Branch:         rel_3_0
Changes by:     Antoine Farnault <toins>        06/11/15 09:07:20

Modified files:
        C4             : Members.pm 

Log message:
        there was 2 differents field into an hashref with differents values. 
I've renamed one.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/koha/C4/Members.pm?cvsroot=koha&only_with_tag=rel_3_0&r1=1.32.2.13&r2=1.32.2.14

Patches:
Index: Members.pm
===================================================================
RCS file: /sources/koha/koha/C4/Members.pm,v
retrieving revision 1.32.2.13
retrieving revision 1.32.2.14
diff -u -b -r1.32.2.13 -r1.32.2.14
--- Members.pm  9 Nov 2006 11:14:56 -0000       1.32.2.13
+++ Members.pm  15 Nov 2006 09:07:20 -0000      1.32.2.14
@@ -19,7 +19,7 @@
 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
 # Suite 330, Boston, MA  02111-1307 USA
 
-# $Id: Members.pm,v 1.32.2.13 2006/11/09 11:14:56 btoumi Exp $
+# $Id: Members.pm,v 1.32.2.14 2006/11/15 09:07:20 toins Exp $
 
 use strict;
 require Exporter;
@@ -31,7 +31,7 @@
 
 use vars qw($VERSION @ISA @EXPORT @EXPORT_OK);
 
-$VERSION = do { my @v = '$Revision: 1.32.2.13 $' =~ /\d+/g; shift(@v) . "." . 
join( "_", map { sprintf "%03d", $_ } @v ); };
+$VERSION = do { my @v = '$Revision: 1.32.2.14 $' =~ /\d+/g; shift(@v) . "." . 
join( "_", map { sprintf "%03d", $_ } @v ); };
 
 =head1 NAME
 
@@ -901,7 +901,7 @@
     #FIXME: sanity-check order and limit
     my $dbh   = C4::Context->dbh;
     my $count=0;
-    my $query = "Select * from issues,biblio,items,biblioitems
+    my $query = "Select *,items.timestamp AS itemstimestamp from 
issues,biblio,items,biblioitems
   where borrowernumber=? and
   items.biblioitemnumber=biblioitems.biblioitemnumber and
   items.itemnumber=issues.itemnumber and




reply via email to

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