From af60975fbccfa66dcace7b2756bf59260e9b9133 Mon Sep 17 00:00:00 2001 From: Pascal Uphaus Date: Thu, 17 Aug 2023 11:32:51 +0000 Subject: [PATCH] Bug 34441: Fixed Typo "Paramater" To test: 1. git grep paramater 2. notice 3 files have spelling mistakes 3. apply the patch 4. git grep paramater 5. notice there are no spelling mistakes for that word Signed-off-by: Thomas Klausner Signed-off-by: Jonathan Druart Signed-off-by: Tomas Cohen Arazi --- catalogue/search.pl | 6 +++--- opac/opac-search.pl | 6 +++--- tools/cleanborrowers.pl | 6 +++--- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/catalogue/search.pl b/catalogue/search.pl index 5954bf2d67..e3da85daee 100755 --- a/catalogue/search.pl +++ b/catalogue/search.pl @@ -350,10 +350,10 @@ if ( $template_type eq 'advsearch' ) { ### OK, if we're this far, we're performing a search, not just loading the advanced search page -# Fetch the paramater list as a hash in scalar context: -# * returns paramater list as tied hash ref +# Fetch the parameter list as a hash in scalar context: +# * returns parameter list as tied hash ref # * we can edit the values by changing the key -# * multivalued CGI paramaters are returned as a packaged string separated by "\0" (null) +# * multivalued CGI parameters are returned as a packaged string separated by "\0" (null) my $params = $cgi->Vars; # Params that can have more than one value # sort by is used to sort the query diff --git a/opac/opac-search.pl b/opac/opac-search.pl index 96851496dc..0d940e5717 100755 --- a/opac/opac-search.pl +++ b/opac/opac-search.pl @@ -348,10 +348,10 @@ if ( $template_type && $template_type eq 'advsearch' ) { ### OK, if we're this far, we're performing an actual search -# Fetch the paramater list as a hash in scalar context: -# * returns paramater list as tied hash ref +# Fetch the parameter list as a hash in scalar context: +# * returns parameter list as tied hash ref # * we can edit the values by changing the key -# * multivalued CGI paramaters are returned as a packaged string separated by "\0" (null) +# * multivalued CGI parameters are returned as a packaged string separated by "\0" (null) my $params = $cgi->Vars; my $tag; if ( $params->{tag} ) { diff --git a/tools/cleanborrowers.pl b/tools/cleanborrowers.pl index 632ed5ccd6..98ee38312e 100755 --- a/tools/cleanborrowers.pl +++ b/tools/cleanborrowers.pl @@ -44,10 +44,10 @@ use Koha::List::Patron qw( GetPatronLists ); my $cgi = CGI->new; -# Fetch the paramater list as a hash in scalar context: -# * returns paramater list as tied hash ref +# Fetch the parameter list as a hash in scalar context: +# * returns parameter list as tied hash ref # * we can edit the values by changing the key -# * multivalued CGI paramaters are returned as a packaged string separated by "\0" (null) +# * multivalued CGI parameters are returned as a packaged string separated by "\0" (null) my $params = $cgi->Vars; my $step = $params->{step} || 1; -- 2.20.1