summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Flag.pm
diff options
context:
space:
mode:
authorjocuri%softhome.net <>2005-01-16 22:02:34 +0100
committerjocuri%softhome.net <>2005-01-16 22:02:34 +0100
commitb36c4ef40718e469d5924721cee4ef15b1a1bf64 (patch)
tree1c90b2bdd839ee6117458d9d555c09743524a2f8 /Bugzilla/Flag.pm
parentba11a24ba069e190fa161abf366a1282f4a0b5a2 (diff)
downloadbugzilla-b36c4ef40718e469d5924721cee4ef15b1a1bf64.tar.gz
bugzilla-b36c4ef40718e469d5924721cee4ef15b1a1bf64.tar.xz
Patch for bug 277622: Move DiffStrings() out of globals.pl into Bugzilla/Util.pm; patch by Max K-A <mkanat@kerio.com>, r=vladd, a=myk.
Diffstat (limited to 'Bugzilla/Flag.pm')
-rw-r--r--Bugzilla/Flag.pm2
1 files changed, 1 insertions, 1 deletions
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);