From c4ced0cffc27b9d7fc73dceb5c99b4a61c7f015a Mon Sep 17 00:00:00 2001 From: Marcel de Rooy Date: Mon, 20 Jul 2015 11:38:56 +0200 Subject: [PATCH] Bug 14569: Typo borroewr|borow Content-Type: text/plain; charset=utf-8 Trivial correction. Only touches comments. Test plan: Run git grep -E "borroewr|borow". You should not find anything now. --- C4/Members/Attributes.pm | 2 +- installer/data/mysql/kohastructure.sql | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/C4/Members/Attributes.pm b/C4/Members/Attributes.pm index a56a627..b25a813 100644 --- a/C4/Members/Attributes.pm +++ b/C4/Members/Attributes.pm @@ -233,7 +233,7 @@ sub SetBorrowerAttributes { return; # bail immediately on errors } } - return 1; # borower attributes successfully set + return 1; # borrower attributes successfully set } =head2 DeleteBorrowerAttribute diff --git a/installer/data/mysql/kohastructure.sql b/installer/data/mysql/kohastructure.sql index df123ee..2409bc2 100644 --- a/installer/data/mysql/kohastructure.sql +++ b/installer/data/mysql/kohastructure.sql @@ -243,7 +243,7 @@ CREATE TABLE `borrowers` ( -- this table includes information about your patrons `contactfirstname` text, -- used for children to include first name of guarentor `contacttitle` text, -- used for children to include title (Mr., Mrs., etc) of guarentor `guarantorid` int(11) default NULL, -- borrowernumber used for children or professionals to link them to guarentors or organizations - `borrowernotes` mediumtext, -- a note on the patron/borroewr's account that is only visible in the staff client + `borrowernotes` mediumtext, -- a note on the patron/borrower's account that is only visible in the staff client `relationship` varchar(100) default NULL, -- used for children to include the relationship to their guarentor `ethnicity` varchar(50) default NULL, -- unused in Koha `ethnotes` varchar(255) default NULL, -- unused in Koha @@ -873,7 +873,7 @@ CREATE TABLE `deletedborrowers` ( -- stores data related to the patrons/borrower `contactfirstname` text, -- used for children to include first name of guarentor `contacttitle` text, -- used for children to include title (Mr., Mrs., etc) of guarentor `guarantorid` int(11) default NULL, -- borrowernumber used for children or professionals to link them to guarentors or organizations - `borrowernotes` mediumtext, -- a note on the patron/borroewr's account that is only visible in the staff client + `borrowernotes` mediumtext, -- a note on the patron/borrower's account that is only visible in the staff client `relationship` varchar(100) default NULL, -- used for children to include the relationship to their guarentor `ethnicity` varchar(50) default NULL, -- unused in Koha `ethnotes` varchar(255) default NULL, -- unused in Koha -- 1.7.10.4