From 6b568442fe684020fae4de18df5fa58264e1dcd0 Mon Sep 17 00:00:00 2001 From: "mkanat%bugzilla.org" Date: Sun, 30 Jan 2011 13:04:24 +0000 Subject: [PATCH] Typo :( git-svn-id: svn://10.0.0.236/trunk@261877 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/webtools/bugzilla/.bzrrev | 2 +- mozilla/webtools/bugzilla/Bugzilla/Install/DB.pm | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/mozilla/webtools/bugzilla/.bzrrev b/mozilla/webtools/bugzilla/.bzrrev index f346764b481..0ffdafa4904 100644 --- a/mozilla/webtools/bugzilla/.bzrrev +++ b/mozilla/webtools/bugzilla/.bzrrev @@ -1 +1 @@ -7688 \ No newline at end of file +7689 \ No newline at end of file diff --git a/mozilla/webtools/bugzilla/Bugzilla/Install/DB.pm b/mozilla/webtools/bugzilla/Bugzilla/Install/DB.pm index 7d97635e843..04afbdb6092 100644 --- a/mozilla/webtools/bugzilla/Bugzilla/Install/DB.pm +++ b/mozilla/webtools/bugzilla/Bugzilla/Install/DB.pm @@ -3493,7 +3493,7 @@ sub _migrate_user_tags { $query =~ s/^bug_id=//; # Commas in Bugzilla 3.x are encoded as %2C, but not in 2.22. - $query =~ s/%2C/,/g + $query =~ s/%2C/,/g; my @bug_ids = split(/[\s,]+/, $query); $sth_bug_tag->execute($_, $tag_id) foreach @bug_ids;