I've fixed the problem with the page links and the page navigation buttons.
Problem: clicking on any of the pagenav stuff gives a js error message that document.adminform.liststart has no properties.
Reason: liststart is not defined anywhere in the form.
Cure: put in the html when the adminForm is created.
../administrator/components/com_fireboard|admin.fireboard.html.php
I just threw the definition of liststart into all the instances where a name = "adminForm" is found.
In fact, this seems to be the function that needed the cure:
| Code: |
function showProfiles($option, $mosConfig_lang, &$profileList, $countPL, $pageNavSP, $order, $search)
{
...
... = some php stuff snipped so that the FB parser doesn't cut the rest of the code out ...
|
I don't see any reason not to let the other ones ride for the time being.