init() called twice
Brought to you by:
jasonmac
When editing a select box, all options are duplicated because of the following code in the select.htm file
----------------------------------------------
<body id="jmform_select" onload="tinyMCEPopup.executeOnLoad('init();');" style="display: none">
----------------------------------------------
Since the init() function is called automatically, this needs to be removed. Doing so fixes the duplication problem. The code below is the correct code to use...
----------------------------------------------
<body id="jmform_select" style="display: none">
----------------------------------------------
Thanks,
Andrew Schools
andrew_schools@yahoo.com