Zen Cart Logo
Forums / General Questions / Safari pop-up error

Safari pop-up error

Locked

Views: 898

Results 1 to 5 of 5
This thread is locked. New replies are disabled.
28 Jan 2010, 11:15 PM
#1
seattleannie avatar

seattleannie

Zen Follower

Join Date:
Oct 2005
Posts:
151
Plugin Contributions:
0

Safari pop-up error

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

29 Jan 2010, 3:26 AM
#3
seattleannie avatar

seattleannie

Zen Follower

Join Date:
Oct 2005
Posts:
151
Plugin Contributions:
0

Re: Safari pop-up error

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.

29 Jan 2010, 3:32 AM
#4
lissae avatar

lissae

Totally Zenned

Join Date:
Oct 2007
Location:
Australia
Posts:
814
Plugin Contributions:
0

Re: Safari pop-up error

You're welcome:D

16 Sep 2010, 3:37 PM
#5
bluetooth avatar

bluetooth

New Zenner

Join Date:
Sep 2005
Posts:
76
Plugin Contributions:
0

Re: Safari pop-up error

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.