From: Frédéric Buclin Date: Fri, 12 Oct 2012 20:24:57 +0000 (+0200) Subject: s/sortey/sortkey/g X-Git-Tag: bugzilla-4.2.4~19 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4e3a63930481bb032790766641f2101708bd4e83;p=thirdparty%2Fbugzilla.git s/sortey/sortkey/g --- diff --git a/Bugzilla/FlagType.pm b/Bugzilla/FlagType.pm index 15d9827444..811530c421 100644 --- a/Bugzilla/FlagType.pm +++ b/Bugzilla/FlagType.pm @@ -95,7 +95,7 @@ use constant VALIDATORS => { description => \&_check_description, cc_list => \&_check_cc_list, target_type => \&_check_target_type, - sortkey => \&_check_sortey, + sortkey => \&_check_sortkey, is_active => \&Bugzilla::Object::check_boolean, is_requestable => \&Bugzilla::Object::check_boolean, is_requesteeble => \&Bugzilla::Object::check_boolean, @@ -325,7 +325,7 @@ sub _check_target_type { return $target_type; } -sub _check_sortey { +sub _check_sortkey { my ($invocant, $sortkey) = @_; (detaint_natural($sortkey) && $sortkey <= MAX_SMALLINT)