From: vladd%bugzilla.org <> Date: Mon, 19 Jun 2006 22:45:38 +0000 (+0000) Subject: Spelling in code comments patch: 'inacessible' -> 'inaccessible'; patch by Vlad Dasca... X-Git-Tag: bugzilla-2.23.2~63 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8f97ec7470892ad1d4254ded1f19d8b46a5cd6af;p=thirdparty%2Fbugzilla.git Spelling in code comments patch: 'inacessible' -> 'inaccessible'; patch by Vlad Dascalu . --- diff --git a/post_bug.cgi b/post_bug.cgi index 99b6e533b8..de7868555b 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); }