My client who is using Safari gets a pop-up error whenever she creates or edits a category that says:
Mozilla <1.3 Beta is not supported!
I'll try, though,but it might not work.
To continue, she has to click OK each time. Can this be disabled?
~anne
My client who is using Safari gets a pop-up error whenever she creates or edits a category that says:
Mozilla <1.3 Beta is not supported!
I'll try, though,but it might not work.
To continue, she has to click OK each time. Can this be disabled?
~anne
Googling brings up many links that point towards it being an issue with the HTMLArea editor, maybe install the fckeditor addon and see if that helps?
http://www.zen-cart.com/index.php?ma...roducts_id=268
HunnyBee Design
"A man's manners are a mirror in which he shows his portrait." ~ Johann Wolfgang von Goethe
Thanks for pointing me in the right direction (HTMLarea editor). I set it to plain text for her instead. When she really wants and HTML editor, she can switch and put up with the error for those times.
You're welcome![]()
HunnyBee Design
"A man's manners are a mirror in which he shows his portrait." ~ Johann Wolfgang von Goethe
I tried this and it works for me. Don't know if it will effect anything else at this point though. Any input is welcome.
Commented out lines 1830 and 1831.
In Catalog > Editors > Htmlarea.Js
// FIXME!!! this should return false for IE < 5.5
HTMLArea.checkSupportedBrowser = function() {
if (HTMLArea.is_gecko) {
if (navigator.productSub < 20021201) {
alert("You need at least Mozilla-1.3 Alpha.\n" +
"Sorry, your Gecko is not supported.");
return false;
}
if (navigator.productSub < 20030210) {
Line 1830- //alert("Mozilla < 1.3 Beta is not supported!\n" +
Line 1831- // "I'll try, though, but it might not work.");
}
}
return HTMLArea.is_gecko || HTMLArea.is_ie;
};
Hope this helps, again, any inputs are welcome.