[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Koha-cvs] koha/C4 Amazon.pm [rel_2_2]
From: |
Joshua Ferraro |
Subject: |
[Koha-cvs] koha/C4 Amazon.pm [rel_2_2] |
Date: |
Sat, 04 Feb 2006 02:01:23 +0000 |
CVSROOT: /sources/koha
Module name: koha
Branch: rel_2_2
Changes by: Joshua Ferraro <address@hidden> 06/02/04 02:01:23
Modified files:
C4 : Amazon.pm
Log message:
Adds Fully Preferences-based Amazon.com feature. See mail to koha-devel
for details.
CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/koha/koha/C4/Amazon.pm.diff?only_with_tag=rel_2_2&tr1=1.3.2.1&tr2=1.3.2.2&r1=text&r2=text
Patches:
Index: koha/C4/Amazon.pm
diff -u koha/C4/Amazon.pm:1.3.2.1 koha/C4/Amazon.pm:1.3.2.2
--- koha/C4/Amazon.pm:1.3.2.1 Fri Feb 3 23:05:55 2006
+++ koha/C4/Amazon.pm Sat Feb 4 02:01:23 2006
@@ -50,7 +50,7 @@
my ( $isbn ) = @_;
#get rid of MARC cataloger's nonsense
- $isbn ~= /(p|-)//g;
+ $isbn =~ s/(p|-)//g;
# grab the developer's key: mine is 'ektostoukadou-20'
my $dev_key=C4::Context->preference('AmazonDevKey');