summaryrefslogtreecommitdiffstats
path: root/js
diff options
context:
space:
mode:
authorGuy Pyrzak <guy.pyrzak@gmail.com>2010-09-19 01:04:29 +0200
committerFrédéric Buclin <LpSolit@gmail.com>2010-09-19 01:04:29 +0200
commite2306b2956ad719082dbfac89d58aadacb5240f6 (patch)
tree69e7e4ce7376117b8d62cd7ebc7ffd371b28d67e /js
parent8042dfb30a65cbc2430e3dac0c854c0b70f3526a (diff)
downloadbugzilla-e2306b2956ad719082dbfac89d58aadacb5240f6.tar.gz
bugzilla-e2306b2956ad719082dbfac89d58aadacb5240f6.tar.xz
Bug 594155: IE6 throws JS errors when filing new bugs
r/a=LpSolit
Diffstat (limited to 'js')
-rw-r--r--js/bug.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/js/bug.js b/js/bug.js
index baea5125f..ca888a68f 100644
--- a/js/bug.js
+++ b/js/bug.js
@@ -100,7 +100,7 @@ YAHOO.bugzilla.dupTable = {
new_ds.maxCacheEntries = 3;
new_ds.responseSchema = {
resultsList : "result.bugs",
- metaFields : { error: "error", jsonRpcId: "id" },
+ metaFields : { error: "error", jsonRpcId: "id" }
};
// DataSource can't understand a JSON-RPC error response, so
// we have to modify the result data if we get one.
@@ -125,5 +125,5 @@ YAHOO.bugzilla.dupTable = {
this.dataSource, data.options);
YAHOO.util.Event.on(data.summary_field, 'keyup', this.doUpdateTable,
[dt, data.product_name]);
- },
+ }
};