Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/bugzilla/ui/editor/NewBugEditor.java')
-rw-r--r--org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/bugzilla/ui/editor/NewBugEditor.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/bugzilla/ui/editor/NewBugEditor.java b/org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/bugzilla/ui/editor/NewBugEditor.java
index d2c29e7d8..c06dd4736 100644
--- a/org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/bugzilla/ui/editor/NewBugEditor.java
+++ b/org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/bugzilla/ui/editor/NewBugEditor.java
@@ -245,13 +245,13 @@ public class NewBugEditor extends AbstractBugEditor {
WebBrowserDialog
.openAcceptAgreement(
null,
- "Possible Bugzilla Failure",
+ "Possible Bugzilla Client Failure",
"Bugzilla may not have posted your bug.\n" + e.getMessage(), form.getError());
BugzillaPlugin.log(e);
}catch (LoginException e) {
+ e.printStackTrace();
// if we had an error with logging in, display an error
- MessageDialog
- .openError(
+ MessageDialog.openError(
null,
"Posting Error",
"Bugzilla could not post your bug since your login name or password is incorrect."

Back to the top