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 /userprefs.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 'userprefs.cgi')
-rwxr-xr-x | userprefs.cgi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/userprefs.cgi b/userprefs.cgi index 8a93bf5d3..34a7249d2 100755 --- a/userprefs.cgi +++ b/userprefs.cgi @@ -384,7 +384,7 @@ sub DoPermissions { } } - # If the user has product specific privileges, inform him about that. + # If the user has product specific privileges, inform them about that. foreach my $privs (PER_PRODUCT_PRIVILEGES) { next if $user->in_group($privs); $vars->{"local_$privs"} = $user->get_products_by_permission($privs); @@ -450,7 +450,7 @@ sub SaveSavedSearches { } if ($group_id) { - # Don't allow the user to share queries with groups he's not + # Don't allow the user to share queries with groups they're not # allowed to. next unless grep($_ eq $group_id, @{$user->queryshare_groups}); |