Commit 5d860b84 authored by lpsolit%gmail.com's avatar lpsolit%gmail.com

Fix incorrect regexp for bug 333648 - Patch by me

parent b180075f
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment