Ticket #24373: wp-import.diff
File wp-import.diff, 876 bytes (added by , 10 years ago) |
---|
-
Users/johngrimes/svn/wordpress/trunk/tests/phpunit/data/plugins/wordpress-importer/wordpress-importer.php
63 63 var $url_remap = array(); 64 64 var $featured_images = array(); 65 65 66 function WP_Import() { /* nothing */ } 66 /** 67 * PHP5 constructor. 68 */ 69 function __construct() { /* nothing */ } 67 70 68 71 /** 72 * PHP4 constructor. 73 */ 74 public function WP_Import() { 75 self::__construct(); 76 } 77 78 /** 69 79 * Registered callback function for the WordPress Importer 70 80 * 71 81 * Manages the three separate stages of the WXR import process