diff options
author | Frédéric Buclin <LpSolit@gmail.com> | 2012-10-12 22:24:57 +0200 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2012-10-12 22:24:57 +0200 |
commit | 4e3a63930481bb032790766641f2101708bd4e83 (patch) | |
tree | cc66e817b175f5299c533453ecff95d301da26a5 | |
parent | af1cf8f17877c1705c8cac98e26c6838340379d6 (diff) | |
download | bugzilla-4e3a63930481bb032790766641f2101708bd4e83.tar.gz bugzilla-4e3a63930481bb032790766641f2101708bd4e83.tar.xz |
s/sortey/sortkey/g
-rw-r--r-- | Bugzilla/FlagType.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Bugzilla/FlagType.pm b/Bugzilla/FlagType.pm index 15d982744..811530c42 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) |