]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Fix incorrect regexp for bug 333648 - Patch by me
authorlpsolit%gmail.com <>
Wed, 8 Apr 2009 20:47:02 +0000 (20:47 +0000)
committerlpsolit%gmail.com <>
Wed, 8 Apr 2009 20:47:02 +0000 (20:47 +0000)
Bugzilla/Flag.pm

index f0286575fc0f0ac49521361e04b421d42076d11e..130756459421873f7e1bc52a42650d4b751b27b8 100644 (file)
@@ -628,7 +628,7 @@ sub update_activity {
     my ($removed, $added) = diff_arrays($old_summaries, $new_summaries);
     if (scalar @$removed || scalar @$added) {
         # Remove flag requester/setter information
-        foreach (@$removed, @$added) { s/^\S+:// }
+        foreach (@$removed, @$added) { s/^[^:]+:// }
 
         $removed = join(", ", @$removed);
         $added = join(", ", @$added);