diff options
author | Frédéric Buclin <LpSolit@gmail.com> | 2012-10-12 22:16:43 +0200 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2012-10-12 22:16:43 +0200 |
commit | 4d8a1f9f7fde54157cf643a0e117ea2f671d573f (patch) | |
tree | 3bb85f8f53045ff0973c65856ca397c378e8c5be /Bugzilla | |
parent | bdbea0ef742a3badba8e8b7d9f0486ec57e212f6 (diff) | |
download | bugzilla-4d8a1f9f7fde54157cf643a0e117ea2f671d573f.tar.gz bugzilla-4d8a1f9f7fde54157cf643a0e117ea2f671d573f.tar.xz |
s/sortey/sortkey/g
Diffstat (limited to 'Bugzilla')
-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 49d1eddc7..a4fb69269 100644 --- a/Bugzilla/FlagType.pm +++ b/Bugzilla/FlagType.pm @@ -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) |