]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
s/sortey/sortkey/g
authorFrédéric Buclin <LpSolit@gmail.com>
Fri, 12 Oct 2012 20:16:43 +0000 (22:16 +0200)
committerFrédéric Buclin <LpSolit@gmail.com>
Fri, 12 Oct 2012 20:16:43 +0000 (22:16 +0200)
Bugzilla/FlagType.pm

index 49d1eddc7ce5088368bcefa8668659d3b19e432d..a4fb6926927a058ea9b82722c006edee5044ccd9 100644 (file)
@@ -83,7 +83,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,
@@ -309,7 +309,7 @@ sub _check_target_type {
     return $target_type;
 }
 
-sub _check_sortey {
+sub _check_sortkey {
     my ($invocant, $sortkey) = @_;
 
     (detaint_natural($sortkey) && $sortkey <= MAX_SMALLINT)