Index: /Users/johngrimes/svn/wordpress/trunk/tests/phpunit/data/plugins/wordpress-importer/wordpress-importer.php
===================================================================
--- /Users/johngrimes/svn/wordpress/trunk/tests/phpunit/data/plugins/wordpress-importer/wordpress-importer.php	(revision 1144828)
+++ /Users/johngrimes/svn/wordpress/trunk/tests/phpunit/data/plugins/wordpress-importer/wordpress-importer.php	(working copy)
@@ -63,9 +63,19 @@
 	var $url_remap = array();
 	var $featured_images = array();
 
-	function WP_Import() { /* nothing */ }
+	/**
+	 * PHP5 constructor.
+	 */
+	function __construct() { /* nothing */ }
 
 	/**
+	 * PHP4 constructor.
+	 */
+	public function WP_Import() {
+		self::__construct();
+	}
+
+	/**
 	 * Registered callback function for the WordPress Importer
 	 *
 	 * Manages the three separate stages of the WXR import process
