[Koha-patches] [PATCH] Revising the stub for ILS/Transaction/FeePayment.pm

Joe Atzberger joe.atzberger at liblime.com
Fri Sep 19 02:02:49 CEST 2008


Obviously more implementation is needed.
---
 C4/SIP/ILS/Transaction/FeePayment.pm |   11 ++++++++---
 1 files changed, 8 insertions(+), 3 deletions(-)

diff --git a/C4/SIP/ILS/Transaction/FeePayment.pm b/C4/SIP/ILS/Transaction/FeePayment.pm
index 00fc81a..8a156b7 100644
--- a/C4/SIP/ILS/Transaction/FeePayment.pm
+++ b/C4/SIP/ILS/Transaction/FeePayment.pm
@@ -1,14 +1,19 @@
 package ILS::Transaction::FeePayment;
 
-use Exporter;
 use warnings;
 use strict;
 
+use vars qw($VERSION @ISA $debug);
+
+BEGIN {
+	$VERSION = 1.00;
+	@ISA = qw(ILS::Transaction);
+	$debug = 0;
+}
+
 use ILS;
 use ILS::Transaction;
 
-our @ISA = qw(Exporter ILS::Transaction);
-
 1;
 __END__
 
-- 
1.5.5.GIT




More information about the Koha-patches mailing list