summaryrefslogtreecommitdiffstats
path: root/lib/Plugins/Bugzilla.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Plugins/Bugzilla.cpp')
-rw-r--r--lib/Plugins/Bugzilla.cpp4
1 files 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;