Make WordPress Core

Ticket #32320: nonewline.diff

File nonewline.diff, 665 bytes (added by justinbusa, 9 years ago)

Patch without rtrim() and the newline.

  • trunk/parsers.php

     
    415415                $fp = $this->fopen( $file, 'r' );
    416416                if ( $fp ) {
    417417                        while ( ! $this->feof( $fp ) ) {
    418                                 $importline = rtrim( $this->fgets( $fp ) );
     418                                $importline = $this->fgets( $fp );
    419419
    420420                                if ( ! $wxr_version && preg_match( '|<wp:wxr_version>(\d+\.\d+)</wp:wxr_version>|', $importline, $version ) )
    421421                                        $wxr_version = $version[1];
     
    457457                                        continue;
    458458                                }
    459459                                if ( $in_post ) {
    460                                         $post .= $importline . "\n";
     460                                        $post .= $importline;
    461461                                }
    462462                        }
    463463