summaryrefslogtreecommitdiffstats
path: root/post_bug.cgi
diff options
context:
space:
mode:
authorvladd%bugzilla.org <>2006-06-20 00:45:38 +0200
committervladd%bugzilla.org <>2006-06-20 00:45:38 +0200
commit8f97ec7470892ad1d4254ded1f19d8b46a5cd6af (patch)
treea62abebfcf440aa28b7a0e7489a06a44bec86dd0 /post_bug.cgi
parent94ffa9fcc04af7ae29154cdf39add9e46280af4a (diff)
downloadbugzilla-8f97ec7470892ad1d4254ded1f19d8b46a5cd6af.tar.gz
bugzilla-8f97ec7470892ad1d4254ded1f19d8b46a5cd6af.tar.xz
Spelling in code comments patch: 'inacessible' -> 'inaccessible'; patch by Vlad Dascalu <vladd@bugzilla.org>.
Diffstat (limited to 'post_bug.cgi')
-rwxr-xr-xpost_bug.cgi2
1 files changed, 1 insertions, 1 deletions
diff --git a/post_bug.cgi b/post_bug.cgi
index 99b6e533b..de7868555 100755
--- a/post_bug.cgi
+++ b/post_bug.cgi
@@ -345,7 +345,7 @@ foreach my $field ("dependson", "blocked") {
foreach my $id (split(/[\s,]+/, $cgi->param($field))) {
next unless $id;
# $field is not passed to ValidateBugID to prevent adding new
- # dependencies on inacessible bugs.
+ # dependencies on inaccessible bugs.
ValidateBugID($id);
push(@validvalues, $id);
}