From 3236c8623c0ecea71d9effd3aeb4b3bb97c24f00 Mon Sep 17 00:00:00 2001
From: Brendan <info@bywatersolutions.com>
Date: Thu, 21 Mar 2013 07:39:33 -0700
Subject: [PATCH] Follow up adding change to acqui/basket.pl and kohastructure.pl

http://bugs.koha-community.org/show_bug.cgi?id=7736
---
 acqui/basket.pl                        |    2 +-
 installer/data/mysql/kohastructure.sql |    1 +
 2 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/acqui/basket.pl b/acqui/basket.pl
index 1ef69c8..ed274d8 100755
--- a/acqui/basket.pl
+++ b/acqui/basket.pl
@@ -28,7 +28,7 @@ use C4::Output;
 use CGI;
 use C4::Acquisition;
 use C4::Budgets;
-use C4::EDI qw( CreateEDIOrder SendEDIOrder );
+use C4::EDI qw( CreateEDIOrder SendEDIOrder CheckVendorFTPAccountExists);
 use C4::Bookseller qw( GetBookSellerFromId);
 use C4::Debug;
 use C4::Biblio;
diff --git a/installer/data/mysql/kohastructure.sql b/installer/data/mysql/kohastructure.sql
index 8aa3099..cf2aa8c 100644
--- a/installer/data/mysql/kohastructure.sql
+++ b/installer/data/mysql/kohastructure.sql
@@ -3045,6 +3045,7 @@ CREATE TABLE IF NOT EXISTS `borrower_modifications` (
   PRIMARY KEY (`verification_token`,`borrowernumber`),
   KEY `verification_token` (`verification_token`),
   KEY `borrowernumber` (`borrowernumber`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8;
 
 --
 -- Table structure for table `vendor_edi_accounts`
-- 
1.7.2.5