From: vladd%bugzilla.org <> Date: Mon, 19 Jun 2006 22:45:49 +0000 (+0000) Subject: Spelling in code comments patch: 'inacessible' -> 'inaccessible'; patch by Vlad Dasca... X-Git-Tag: bugzilla-2.22.1~65 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4a9b9a306e72c7e68ad4dd3d9a9f8c01a7810de7;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 4d8c6a2c9c..f2b9d1676b 100755 --- a/post_bug.cgi +++ b/post_bug.cgi @@ -289,7 +289,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); }