I tried clearing my browser caches and trying again and it made no difference. Here is the function that I modified based on your instructions. Can you confirm that there's nothing wrong with it?
function SetupFixForProjectMapping()
{
sNoChangeFixFor = document.formWithProject.ixFixFor.getAttribute('sNoChangeFixFor');
ixNoChangeFixFor = document.formWithProject.ixFixFor.getAttribute('ixNoChangeFixFor');
if (!DB.FixFor || !document.formWithProject.ixFixFor) return;
rgFixForProject = DB.FixFor.select();
rgFixForProject.foreach(function(_) {
_.ix = _.ixFixFor;
_.s = _.sCTZFixForVersionFromUTC;
_.ixP = _.ixProject;
if (IsNull(_.ixP))
_.ixP = -1;
});
}
The line in red (hopefully in red on your system) is the only line I modified. Prior to my modifying the line, this is what it was:
if (!DB.FixFor) return;