Ticket #24373: 24373.diff
| File 24373.diff, 927 bytes (added by , 13 years ago) |
|---|
-
parsers.php
401 401 var $terms = array(); 402 402 var $base_url = ''; 403 403 404 function __construct() { 405 $this->has_gzip = is_callable( 'gzopen' ); 406 } 407 404 408 function WXR_Parser_Regex() { 405 409 $this->__construct(); 406 410 } 407 411 408 function __construct() {409 $this->has_gzip = is_callable( 'gzopen' );410 }411 412 412 function parse( $file ) { 413 413 $wxr_version = $in_post = false; 414 414 -
wordpress-importer.php
1107 1107 * Added to http_request_timeout filter to force timeout at 60 seconds during import 1108 1108 * @return int 60 1109 1109 */ 1110 function bump_request_timeout( ) {1110 function bump_request_timeout( $val ) { 1111 1111 return 60; 1112 1112 } 1113 1113