Last modified: 2007-05-18 18:17:06 UTC
On line 368: document.forms['queryform'].short_desc.focus(); There is no form with name="queryform" on this page, only on the standard query.cgi page. It should be: document.forms['reportform'].short_desc.focus();
Some other things about JS on that page. The script block starting at line 18 only contains a single, empty function (initHelp) that is never used. The onclick handlers for inputs with name cmd-add0-0-1, cmd-add0-1-0, cmd-add1-0-0 (near line 1170) use document.forms[0].method, which would break if another form was inserted at the top of the page. They should use this.form.method instead.
Don't see any errors, assuming working after 3.0 upgrade.