diff options
author | Charlie Somerville <charlie@charliesomerville.com> | 2014-02-27 09:48:50 +0100 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2014-02-27 09:48:50 +0100 |
commit | d0308956b71eac546865487bf50c328456471b27 (patch) | |
tree | a33825be09176ca0a20cdb6fc669eb5d70a0b18c /buglist.cgi | |
parent | 684499b0d3c75cb498af82e6df4da84c10658e32 (diff) | |
download | bugzilla-d0308956b71eac546865487bf50c328456471b27.tar.gz bugzilla-d0308956b71eac546865487bf50c328456471b27.tar.xz |
Bug 947823: Replace gender-specific pronouns with gender-neutral pronouns
r=gerv a=justdave
Diffstat (limited to 'buglist.cgi')
-rwxr-xr-x | buglist.cgi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/buglist.cgi b/buglist.cgi index 600e14ef7..075986ca4 100755 --- a/buglist.cgi +++ b/buglist.cgi @@ -262,7 +262,7 @@ sub GetGroups { my $product = new Bugzilla::Product({name => $product_name}); foreach my $gid (keys %{$product->group_controls}) { - # The user can only edit groups he belongs to. + # The user can only edit groups they belong to. next unless $user->in_group_id($gid); # The user has no control on groups marked as NA or MANDATORY. @@ -369,7 +369,7 @@ if ($cmdtype eq "dorem") { ($buffer, $query_id) = LookupNamedQuery(scalar $cgi->param("namedcmd"), $user->id); if ($query_id) { - # Make sure the user really wants to delete his saved search. + # Make sure the user really wants to delete their saved search. my $token = $cgi->param('token'); check_hash_token($token, [$query_id, $qname]); |