From 216ccdca63a69b99e2b0bc282c4e250fb76c3cd3 Mon Sep 17 00:00:00 2001 From: Matěj Cepl Date: Fri, 13 May 2011 13:18:46 +0200 Subject: Don't allow submit for 0xFFFF component. Fix #97 --- data/rhlib/rhbzpage.js | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'data') diff --git a/data/rhlib/rhbzpage.js b/data/rhlib/rhbzpage.js index 48a5758..881bba9 100644 --- a/data/rhlib/rhbzpage.js +++ b/data/rhlib/rhbzpage.js @@ -502,6 +502,16 @@ function RHBZinit(attachments) { setBranding(XorgLogAttList); + // Don't allow to submit a page which would change the bug to 0xFFFF component + document.forms.namedItem("changeform").addEventListener( + "submit", function(aEvt) { + if (getComponent() == "0xFFFF") { + alert("Don't change the component to 0xFFFF"); + aEvt.stopPropagation(); + aEvt.preventDefault(); + } + }, false); + // Uncheck "set default assignee" when the assignee is changed by other means document.getElementById("assigned_to").addEventListener("change", function() { -- cgit