Make WordPress Core

Ticket #11030: 11030.diff

File 11030.diff, 3.0 KB (added by dd32, 17 years ago)
  • wp-admin/import/blogger.php

     
    197197                $loadauth = esc_js( __('Preparing author mapping form...') );
    198198                $authhead = esc_js( __('Final Step: Author Mapping') );
    199199                $nothing  = esc_js( __('Nothing was imported. Had you already imported this blog?') );
     200                $stopping = ''; //Missing String used below.
    200201                $title    = __('Blogger Blogs');
    201202                $name     = __('Blog Name');
    202203                $url      = __('Blog URL');
     
    530531        }
    531532
    532533        function _normalize_tag( $matches ) {
    533                 return '<' . strtolower( $match[1] );
     534                return '<' . strtolower( $matches[1] );
    534535        }
    535536
    536537        function import_post( $entry ) {
  • wp-admin/import/blogware.php

     
    4343        }
    4444
    4545        function _normalize_tag( $matches ) {
    46                 return '<' . strtolower( $match[1] );
     46                return '<' . strtolower( $matches[1] );
    4747        }
    4848
    4949        function import_posts() {
  • wp-admin/import/livejournal.php

     
    325325        }
    326326
    327327        function _normalize_tag( $matches ) {
    328                 return '<' . strtolower( $match[1] );
     328                return '<' . strtolower( $matches[1] );
    329329        }
    330330
    331331        function import_post( $post ) {
  • wp-admin/import/rss.php

     
    4444        }
    4545
    4646        function _normalize_tag( $matches ) {
    47                 return '<' . strtolower( $match[1] );
     47                return '<' . strtolower( $matches[1] );
    4848        }
    4949
    5050        function get_posts() {
  • wp-admin/import/wordpress.php

     
    358358        }
    359359
    360360        function _normalize_tag( $matches ) {
    361                 return '<' . strtolower( $match[1] );
     361                return '<' . strtolower( $matches[1] );
    362362        }
    363363
    364364        function process_post($post) {
  • wp-admin/includes/class-wp-filesystem-ftpsockets.php

     
    298298                $ret = array();
    299299                foreach ( $list as $struc ) {
    300300
    301                         if ( '.' == $struct['name'] || '..' == $struc['name'] )
     301                        if ( '.' == $struc['name'] || '..' == $struc['name'] )
    302302                                continue;
    303303
    304304                        if ( ! $include_hidden && '.' == $struc['name'][0] )
    305305                                continue;
    306306
    307                         if ( $limit_file && $srtuc['name'] != $limit_file )
     307                        if ( $limit_file && $struc['name'] != $limit_file )
    308308                                continue;
    309309
    310310                        if ( 'd' == $struc['type'] ) {