aboutsummaryrefslogtreecommitdiffstats
path: root/data/rhlib
diff options
context:
space:
mode:
authorMatěj Cepl <mcepl@redhat.com>2011-06-10 14:17:15 +0200
committerMatěj Cepl <mcepl@redhat.com>2011-06-10 14:34:31 +0200
commit53cc2b746e800210382a335eacafe64b896e1b92 (patch)
treec06c5b84783494d8b4e113aec84e8500edc0afbe /data/rhlib
parentbd26ab13b7d8e89eccb684f374959cfedbe51de7 (diff)
downloadbugzilla-triage-53cc2b746e800210382a335eacafe64b896e1b92.tar.gz
Separate PCI ID components with colon not with comma.
Conflicts: data/rhlib/rhbzpage.js
Diffstat (limited to 'data/rhlib')
-rw-r--r--data/rhlib/rhbzpage.js5
1 files changed, 3 insertions, 2 deletions
diff --git a/data/rhlib/rhbzpage.js b/data/rhlib/rhbzpage.js
index abb5c19..d65ad8d 100644
--- a/data/rhlib/rhbzpage.js
+++ b/data/rhlib/rhbzpage.js
@@ -233,8 +233,9 @@ function chipsetMagic (interestingLineArr) {
// If we have Chipset line, we should parse it as well and
// add to the button
if (interestingLineArr.length > 1) {
- var PCIid = (interestingPCIID[0] + "," + interestingPCIID[1]).
+ var PCIid = (interestingPCIID[0] + ":" + interestingPCIID[1]).
toUpperCase();
+ console.myDebug("PCIid = " + PCIid);
// Nvidia driver provides good code in the Chipset line
if (interestingPCIID[0].toLowerCase() == "10de") {
cardStr = interestingLineArr[1][2].
@@ -244,7 +245,7 @@ function chipsetMagic (interestingLineArr) {
try {
cardStr = constantData.chipNames[PCIid][0];
} catch (e if e instanceof TypeError) {
- PCIid = PCIid.toLowerCase().replace(",",":");
+ PCIid = PCIid.toLowerCase();
cardStr = null;
alert("PCI ID " + PCIid + " is not known!");
self.postMessage(new Message("SetClipboard", PCIid.toString()));