Index: /FCKeditor/trunk/fckeditor.php
===================================================================
--- /FCKeditor/trunk/fckeditor.php	(revision 709)
+++ /FCKeditor/trunk/fckeditor.php	(revision 710)
@@ -26,5 +26,5 @@
  */
 
-if ( version_compare( phpversion(), '5', '<' ) )
+if ( !function_exists('version_compare') || version_compare( phpversion(), '5', '<' ) )
 	include_once( 'fckeditor_php4.php' ) ;
 else
Index: /FCKeditor/trunk/fckeditor_php4.php
===================================================================
--- /FCKeditor/trunk/fckeditor_php4.php	(revision 709)
+++ /FCKeditor/trunk/fckeditor_php4.php	(revision 710)
@@ -60,6 +60,7 @@
 		$Html = '<div>' ;
 		
-		if (!isset($_GET)) {
-		    $_GET = $HTTP_GET_VARS;
+		if ( !isset( $_GET ) ) {
+			global $HTTP_GET_VARS ;
+		    $_GET = $HTTP_GET_VARS ;
 		}
 
@@ -109,6 +110,7 @@
 		global $HTTP_USER_AGENT ;
 
-		if (!isset($_SERVER)) {
-		    $_SERVER = $HTTP_SERVER_VARS;
+		if ( !isset( $_SERVER ) ) {
+			global $HTTP_SERVER_VARS ;
+		    $_SERVER = $HTTP_SERVER_VARS ;
 		}
 		
