***This is not a full package. ***

This fix should be applied to the latest full package

In Firefox clicking the Add a Line caused the following
Error: uncaught exception: [Exception... "Not enough arguments" nsresult: "0x80570001 (NS_ERROR_XPC_NOT_ENOUGH_ARGS)"

The Fix:
In catalog/admin/categories.php

function addSubproduct(){

currentElement.setAttribute("disabled");

Should read:

currentElement.setAttribute("disabled", "");




**The setAttribute methods takes two parameters

More...