diff options
author | bbaetz%acm.org <> | 2008-04-02 07:23:02 +0200 |
---|---|---|
committer | bbaetz%acm.org <> | 2008-04-02 07:23:02 +0200 |
commit | 0e4b8f785d87afacbf432f6985a3d906b35bba21 (patch) | |
tree | fde47afd865c8b0a670f4a7963f81b71b0b24efd /Bugzilla | |
parent | 527abd57ab7896caeb87ae56132e59f937dfe2b7 (diff) | |
download | bugzilla-0e4b8f785d87afacbf432f6985a3d906b35bba21.tar.gz bugzilla-0e4b8f785d87afacbf432f6985a3d906b35bba21.tar.xz |
Bug 425599 â show_activity missing space for attachment flag changes
r/a=lpsolit
Diffstat (limited to 'Bugzilla')
-rwxr-xr-x | Bugzilla/Bug.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/Bug.pm b/Bugzilla/Bug.pm index 5694ac351..3d4c4b869 100755 --- a/Bugzilla/Bug.pm +++ b/Bugzilla/Bug.pm @@ -2892,7 +2892,7 @@ sub GetBugActivity { if ($activity_visible) { # This gets replaced with a hyperlink in the template. - $field =~ s/^Attachment// if $attachid; + $field =~ s/^Attachment\s*// if $attachid; # Check for the results of an old Bugzilla data corruption bug $incomplete_data = 1 if ($added =~ /^\?/ || $removed =~ /^\?/); |