@@ -, +, @@ recieved --- Koha/Object.pm | 2 +- acqui/finishreceive.pl | 2 +- misc/cronjobs/cleanup_database.pl | 2 +- misc/release_notes/release_notes_200RC4.txt | 4 ++-- t/Auth_with_shibboleth.t | 4 ++-- 5 files changed, 7 insertions(+), 7 deletions(-) --- a/Koha/Object.pm +++ a/Koha/Object.pm @@ -134,7 +134,7 @@ Returns: sub delete { my ($self) = @_; - # Deleting something not in storage thows an exception + # Deleting something not in storage throws an exception return -1 unless $self->_result()->in_storage(); # Return a boolean for succcess --- a/acqui/finishreceive.pl +++ a/acqui/finishreceive.pl @@ -58,7 +58,7 @@ my $bookfund = $input->param("bookfund"); my $order = GetOrder($ordernumber); my $new_ordernumber = $ordernumber; -#need old recievedate if we update the order, parcel.pl only shows the right parcel this way FIXME +#need old receivedate if we update the order, parcel.pl only shows the right parcel this way FIXME if ($quantityrec > $origquantityrec ) { my @received_items = (); if(C4::Context->preference('AcqCreateItem') eq 'ordering') { --- a/misc/cronjobs/cleanup_database.pl +++ a/misc/cronjobs/cleanup_database.pl @@ -63,7 +63,7 @@ Usage: $0 [-h|--help] [--sessions] [--sessdays DAYS] [-v|--verbose] [--zebraqueu of Z39.50 searches --fees DAYS purge entries accountlines older than DAYS days, where amountoutstanding is 0 or NULL. - In the case of --feees, DAYS must be greater than + In the case of --fees, DAYS must be greater than or equal to 1. WARNING: Fees and payments may not be deleted together. This will not affect the account balance but may be --- a/misc/release_notes/release_notes_200RC4.txt +++ a/misc/release_notes/release_notes_200RC4.txt @@ -56,7 +56,7 @@ major : * indicators where stored but not displayed in MARC editor/viewer. * book shelves work again (note bookshelves are not avaible in OPAC. they will be added in 2.2.0) minor : -* it's now impossible to create a basket for an inactive supplier (it's of course possible to change supplier datas and recieve a past order) +* it's now impossible to create a basket for an inactive supplier (it's of course possible to change supplier datas and receive a past order) * removing "bulk", useless field, in admin/categorie.pl list (NOT in DB, in case someone uses the field) * removing forced order in admin/thesaurus.pl => mySQL returns datas ordered by relevance in fulltext index if you don't force an order. * Next borrower didn't work in circulation.pl (didn't return to borrower form) @@ -67,4 +67,4 @@ minor : IMPROVEMENTS: * Minor translation & HTML fixes. * Adding >>> in biblio editor to change tab. -* Adding a "print" link in MARCbiblio : popup a small windows, print the biblio, and closes. Nice for libraries still having a paper catalog. +* Adding a "print" link in MARCbiblio : popup a small windows, print the biblio, and closes. Nice for libraries still having a paper catalog. --- a/t/Auth_with_shibboleth.t +++ a/t/Auth_with_shibboleth.t @@ -154,7 +154,7 @@ subtest "get_login_shib tests" => sub { ## debug off $C4::Auth_with_shibboleth::debug = '0'; warnings_are { $login = get_login_shib() }[], - "good config with debug off, no warnings recieved"; + "good config with debug off, no warnings received"; is( $login, "test1234", "good config with debug off, attribute value returned" ); @@ -165,7 +165,7 @@ subtest "get_login_shib tests" => sub { "shibboleth attribute to match: uid", "uid value: test1234" ], - "good config with debug enabled, correct warnings recieved"; + "good config with debug enabled, correct warnings received"; is( $login, "test1234", "good config with debug enabled, attribute value returned" ); --