Quote:
Originally Posted by 99SIVTEC
Yep, I can verify the firefox problems. Any idea's on that? A large number of my users are using FF, and i'm pushing that browser hard since IE sucks so badly.
|
After speaking with Ianomed about this he pointed out some problems with the template STANDARD_REDIRECT and Firefox...as a result I've found (at least a temporary fix) a fix for this...go to your STANDARD_REDIRECT template and change:
HTML Code:
else
{
clearTimeout(timerID);
window.status = "";
window.location = "$js_url";
}
to:
HTML Code:
else
{
clearTimeout(timerID);
window.status = "";
window.location = "$url";
}
I'm testing it across a few different browsers right now, i'll post if i find any irregularities, but at least the URL's are forwarding now (making this module useful again
)