From: Frédéric Buclin Date: Sat, 19 Nov 2011 00:10:01 +0000 (+0100) Subject: cancelled -> canceled X-Git-Tag: bugzilla-4.3.1~201 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=edaf6506a009280be2e3b894b5563609b9ff734d;p=thirdparty%2Fbugzilla.git cancelled -> canceled https://bugzilla.mozilla.org/show_bug.cgi?id=703788 --- diff --git a/Bugzilla/Util.pm b/Bugzilla/Util.pm index b75c5c3403..a3ec2aafef 100644 --- a/Bugzilla/Util.pm +++ b/Bugzilla/Util.pm @@ -336,7 +336,7 @@ sub diff_arrays { $old[$old_pos] = undef; } } - # Ignore cancelled items as well as empty strings. + # Ignore canceled items as well as empty strings. my @removed = grep { defined $_ && $_ ne '' } @old; return (\@removed, \@added); }