Upgrade vb5.6.1 to 5.6.2. AdminCP Template Mgr buttons Customize/Edit/Revert don't do anything. Debug console in firefox gives error 'button.form not defined'
Since it DID work in 5.6.1 I did some digging in "./clientscript/vbulletin_templatemgr.js" and found that the buttonClick function appears to be broken, it looks like this for 5.6.2:
which won't work, 'cos button isn't in function header. When I replaced that function with the one in vb5.6.1 the buttons work in vb5.6.2 adminCP. But I don't want to go into production like that of course 
Is this the correct way to report bugs or should I create a ticket in the bugtracker somehow?
Running vb5.6.2 on CentOs7, MySql 5.7, php 7.4.7, browsers used Firefox 77 and Chrome 83 on Win10 US. (local test server)
Since it DID work in 5.6.1 I did some digging in "./clientscript/vbulletin_templatemgr.js" and found that the buttonClick function appears to be broken, it looks like this for 5.6.2:
Code:
function buttonclick(a,b,c){eval("el = button.form.tl"+b);return!1}

Is this the correct way to report bugs or should I create a ticket in the bugtracker somehow?
Running vb5.6.2 on CentOs7, MySql 5.7, php 7.4.7, browsers used Firefox 77 and Chrome 83 on Win10 US. (local test server)
Comment