[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Koha-cvs] koha request.pl [dev_week]
From: |
Chris Cormack |
Subject: |
[Koha-cvs] koha request.pl [dev_week] |
Date: |
Mon, 11 Jun 2007 23:58:59 +0000 |
CVSROOT: /sources/koha
Module name: koha
Branch: dev_week
Changes by: Chris Cormack <rangi> 07/06/11 23:58:59
Modified files:
. : request.pl
Log message:
Missed passing through the itemnumber
CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/koha/request.pl?cvsroot=koha&only_with_tag=dev_week&r1=1.28.2.4.2.2&r2=1.28.2.4.2.3
Patches:
Index: request.pl
===================================================================
RCS file: /sources/koha/koha/Attic/request.pl,v
retrieving revision 1.28.2.4.2.2
retrieving revision 1.28.2.4.2.3
diff -u -b -r1.28.2.4.2.2 -r1.28.2.4.2.3
--- request.pl 11 Jun 2007 22:12:56 -0000 1.28.2.4.2.2
+++ request.pl 11 Jun 2007 23:58:59 -0000 1.28.2.4.2.3
@@ -1,6 +1,6 @@
#!/usr/bin/perl
-# $Id: request.pl,v 1.28.2.4.2.2 2007/06/11 22:12:56 rangi Exp $
+# $Id: request.pl,v 1.28.2.4.2.3 2007/06/11 23:58:59 rangi Exp $
#script to place reserves/requests
#writen 2/1/00 by address@hidden
@@ -197,6 +197,7 @@
$reserve{'ccode'}=$res->{'ccode'};
$reserve{'branchloop'address@hidden;
$reserve{'optionloop'address@hidden;
+ $reserve{'itemnumber'} = $res->{'itemnumber'};
push(@reserveloop,\%reserve);
}