diff options
Diffstat (limited to 'data/rhlib/rhbzpage.js')
-rw-r--r-- | data/rhlib/rhbzpage.js | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/data/rhlib/rhbzpage.js b/data/rhlib/rhbzpage.js index fc46d23..c1bca62 100644 --- a/data/rhlib/rhbzpage.js +++ b/data/rhlib/rhbzpage.js @@ -168,8 +168,11 @@ function sendBugUpstream(thgs) { return; } if (localThings) { + myDebug('sendBugUpstream: creating new bug for component ' + + getComponent()); var admitMsg = "(originally filed as " + window.location.href + ")\n\n"; var urlStr = filterByRegexp(constantData.newUpstreamBug, getComponent()); + myDebug('sendBugUpstream: urlStr = ' + urlStr); if (!urlStr) { return null; } @@ -337,7 +340,7 @@ function analyzeXorgLog(attachID, backMsg) { */ function addExternalBug() { // that's a bad id, if there is a one. :) - var inputBox = document.getElementById("inputbox"); + var inputBox = document.getElementById("external_bug_id"); var externalBugID = 0; var wholeURL = ""; @@ -438,8 +441,7 @@ function RHBZinit(things) { // inheritance ... call superobject's constructor var AbrtRE = new RegExp("^\\s*\\[abrt\\]"); var btSnippet = ""; - sendBugUpstream(things); // FIXME this is not a real call, - // just initializing static variable + sendBugUpstream(things); var chipMagicInterestingLine = ""; |