From da9ae9cc0e9376f85daec9a9575527aa85d32834 Mon Sep 17 00:00:00 2001 From: Nikola Pajkovsky Date: Wed, 12 May 2010 18:14:49 +0200 Subject: bugzilla: better summary and decription messages Signed-off-by: Nikola Pajkovsky --- lib/Plugins/Bugzilla.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Plugins/Bugzilla.cpp b/lib/Plugins/Bugzilla.cpp index 18df7216..b7c15de2 100644 --- a/lib/Plugins/Bugzilla.cpp +++ b/lib/Plugins/Bugzilla.cpp @@ -356,7 +356,7 @@ xmlrpc_int32 ctx::new_bug(const map_crash_data_t& pCrashData) const char *reason = get_crash_data_item_content_or_NULL(pCrashData, FILENAME_REASON); const char *function = get_crash_data_item_content_or_NULL(pCrashData, FILENAME_CRASH_FUNCTION); - std::string summary = "[abrt] crash in " + package; + std::string summary = "[abrt] " + package; if (function != NULL && strlen(function) < 30) { summary += ": "; @@ -370,7 +370,7 @@ xmlrpc_int32 ctx::new_bug(const map_crash_data_t& pCrashData) } std::string status_whiteboard = "abrt_hash:" + duphash; - std::string description = "abrt "VERSION" detected a crash.\n\n"; + std::string description = "abrt version: "VERSION"\n"; description += make_description_bz(pCrashData); std::string product; -- cgit