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

index 15d9827444c4e77b7916271c331486d888457a51..811530c4219b441b61437cb9d1aa7499068f06c2 100644 (file)
@@ -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)