From b36c4ef40718e469d5924721cee4ef15b1a1bf64 Mon Sep 17 00:00:00 2001 From: "jocuri%softhome.net" <> Date: Sun, 16 Jan 2005 21:02:34 +0000 Subject: Patch for bug 277622: Move DiffStrings() out of globals.pl into Bugzilla/Util.pm; patch by Max K-A , r=vladd, a=myk. --- Bugzilla/Flag.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Bugzilla/Flag.pm') diff --git a/Bugzilla/Flag.pm b/Bugzilla/Flag.pm index 57ea55982..ffed79bde 100644 --- a/Bugzilla/Flag.pm +++ b/Bugzilla/Flag.pm @@ -307,7 +307,7 @@ sub process { my $old_summaries = join(", ", @old_summaries); my $new_summaries = join(", ", @new_summaries); - my ($removed, $added) = &::DiffStrings($old_summaries, $new_summaries); + my ($removed, $added) = diff_strings($old_summaries, $new_summaries); if ($removed ne $added) { my $sql_removed = &::SqlQuote($removed); my $sql_added = &::SqlQuote($added); -- cgit v1.2.3-24-g4f1b