Index: /FCKeditor/trunk/fckeditor.js
===================================================================
--- /FCKeditor/trunk/fckeditor.js	(revision 882)
+++ /FCKeditor/trunk/fckeditor.js	(revision 883)
@@ -38,6 +38,4 @@
 	this.CheckBrowser	= true ;
 	this.DisplayErrors	= true ;
-	this.EnableSafari	= false ;		// This is a temporary property, while Safari support is under development.
-	this.EnableSafari	= true ;		// @Packager.RemoveLine
 
 	this.Config			= new Object() ;
@@ -155,5 +153,5 @@
 FCKeditor.prototype._IsCompatibleBrowser = function()
 {
-	return FCKeditor_IsCompatibleBrowser( this.EnableSafari ) ;
+	return FCKeditor_IsCompatibleBrowser() ;
 }
 
@@ -188,9 +186,9 @@
 }
 
-function FCKeditor_IsCompatibleBrowser( enableSafari )
+function FCKeditor_IsCompatibleBrowser()
 {
 	var sAgent = navigator.userAgent.toLowerCase() ;
 
-	// Internet Explorer
+	// Internet Explorer 5.5+
 	if ( /*@cc_on!@*/false && sAgent.indexOf("mac") == -1 )
 	{
@@ -203,9 +201,9 @@
 		return true ;
 
-	// Opera
+	// Opera 9.50+
 	if ( window.opera && window.opera.version && window.opera.version() >= 9.5 )
 			return true ;
 
-	// Safari
+	// Safari 3+
 	if ( enableSafari && sAgent.indexOf( ' applewebkit/' ) != -1 )
 		return ( sAgent.match( / applewebkit\/(\d+)/ )[1] >= 522 ) ;	// Build must be at least 522 (v3)
