From 9d2ec087d11da640490e64edddad6020bb0e337a Mon Sep 17 00:00:00 2001 From: "Robin H. Johnson" Date: Sat, 9 Aug 2008 18:31:31 +0000 Subject: Change default template per solars request. --- bugzilla.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bugzilla.rb b/bugzilla.rb index 8fb6335..d0fe2db 100644 --- a/bugzilla.rb +++ b/bugzilla.rb @@ -212,7 +212,7 @@ class BugzillaPlugin < Plugin unless @template #@template = "Bug @BUGNO@; \"@DESC@\"; @PRODCOMP@; @STATUS@; @REPORTER@ -> @ASSIGNEE@; @URL@" - @template = "@URL@ \"@DESC@\"; @PRODCOMP@; @STATUS@; @REPORTER@ -> @ASSIGNEE@" + @template = "@URL@ \"@DESC@\"; @PRODCOMP@; @STATUS@; @REPORTER@:@ASSIGNEE@" end return @template @@ -369,7 +369,7 @@ class BugzillaPlugin < Plugin product = bugxml.get_text("product").to_s component = bugxml.get_text("component").to_s product_component = - "#{product} | #{component}".chomp(" | ") + "#{product}, #{component}".chomp(", ") bug_status = bugxml.get_text("bug_status").to_s issue_status = bugxml.get_text("issue_status").to_s -- cgit v1.2.3-65-gdbad