summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortimeless%mozdev.org <>2007-12-16 17:32:49 +0100
committertimeless%mozdev.org <>2007-12-16 17:32:49 +0100
commit2fe815e9b6168dc98f37ba03f51c76206ae7fccc (patch)
treee7882556941a505bb994d05e5534b3569f5e0cbb
parentc90d3ee4549519e18df0c049ff0777271bb38e1a (diff)
downloadbugzilla-2fe815e9b6168dc98f37ba03f51c76206ae7fccc.tar.gz
bugzilla-2fe815e9b6168dc98f37ba03f51c76206ae7fccc.tar.xz
Bug 369062 prior should read "earlier" in edit groups
r=lpsolit a=lpsolit
-rw-r--r--Bugzilla/DB.pm2
-rw-r--r--template/en/default/admin/groups/confirm-remove.html.tmpl2
-rwxr-xr-xuserprefs.cgi2
3 files changed, 3 insertions, 3 deletions
diff --git a/Bugzilla/DB.pm b/Bugzilla/DB.pm
index f97273e1a..ec241bcca 100644
--- a/Bugzilla/DB.pm
+++ b/Bugzilla/DB.pm
@@ -1628,7 +1628,7 @@ Abstract method, should be overridden by database specific code.
=item C<$limit> - number of rows to return from query (scalar)
-=item C<$offset> - number of rows to skip prior counting (scalar)
+=item C<$offset> - number of rows to skip before counting (scalar)
=back
diff --git a/template/en/default/admin/groups/confirm-remove.html.tmpl b/template/en/default/admin/groups/confirm-remove.html.tmpl
index 0c0e28501..cdb070d33 100644
--- a/template/en/default/admin/groups/confirm-remove.html.tmpl
+++ b/template/en/default/admin/groups/confirm-remove.html.tmpl
@@ -48,7 +48,7 @@
[% END %]
<p>Generally, you will only need to do this when upgrading groups
- created with [% terms.Bugzilla %] versions 2.16 and prior. Use
+ created with [% terms.Bugzilla %] versions 2.16 and earlier. Use
this option with <b>extreme care</b> and consult the documentation
for further information.
</p>
diff --git a/userprefs.cgi b/userprefs.cgi
index 57cbd4c21..3880b9c38 100755
--- a/userprefs.cgi
+++ b/userprefs.cgi
@@ -503,7 +503,7 @@ my $cgi = Bugzilla->cgi;
# This script needs direct access to the username and password CGI variables,
# so we save them before their removal in Bugzilla->login, and delete them
-# prior to login if we might possibly be in an sudo session.
+# before login in case we might be in a sudo session.
my $bugzilla_login = $cgi->param('Bugzilla_login');
my $bugzilla_password = $cgi->param('Bugzilla_password');
$cgi->delete('Bugzilla_login', 'Bugzilla_password') if ($cgi->cookie('sudo'));