@@ -, +, @@ --- C4/Tags.pm | 6 +++--- opac/opac-tags.pl | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) --- a/C4/Tags.pm +++ a/C4/Tags.pm @@ -151,7 +151,7 @@ sub get_tag_rows { next; } unless (1 == scalar grep { $_ eq $key } @ok_fields) { - carp "get_tag_rows received unreconized argument key '$key'."; + carp "get_tag_rows received unrecognized argument key '$key'."; next; } if ($key eq 'limit') { @@ -189,7 +189,7 @@ sub get_tags { # i.e., from tags_index next; } unless (1 == scalar grep { $_ eq $key } @ok_fields) { - carp "get_tags received unreconized argument key '$key'."; + carp "get_tags received unrecognized argument key '$key'."; next; } if ($key eq 'limit') { @@ -255,7 +255,7 @@ sub get_approval_rows { # i.e., from tags_approval next; } unless (1 == scalar grep { $_ eq $key } @ok_fields) { - carp "get_approval_rows received unreconized argument key '$key'."; + carp "get_approval_rows received unrecognized argument key '$key'."; next; } if ($key eq 'limit') { --- a/opac/opac-tags.pl +++ a/opac/opac-tags.pl @@ -79,7 +79,7 @@ sub ajax_auth_cgi { # returns CGI object return $input; } -# The trick here is to support multiple tags added to multiple bilbios in one POST. +# The trick here is to support multiple tags added to multiple biblios in one POST. # The HTML might not use this, but it makes it more web-servicey from the start. # So the name of param has to have biblionumber built in. # For lack of anything more compelling, we just use "newtag[biblionumber]" --