Bug tracker web interface sometimes records submissions twice (with firefox)

free_coder free at localhost.localdomain
Tue Jul 28 12:42:57 PDT 2009


On Wed, 29 Jul 2009 02:10:27 +0900, YONETANI Tomokazu wrote:

>     try {
> 	event.returnValue = 0;    // work-around for IE
>     } catch (e) {}
> 
>        return 0;
>    }

I would suggest "finally" instead of empty "catch":
     try {
 	event.returnValue = 0;
     } finally {
        return 0;
     }





More information about the Bugs mailing list