Make WordPress Core

Changeset 12104


Ignore:
Timestamp:
10/25/2009 05:30:58 PM (14 years ago)
Author:
azaozz
Message:

Typo fixes, props dd32, fixes #11030

Location:
trunk/wp-admin
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/import/blogger.php

    r11964 r12104  
    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');
     
    531532
    532533    function _normalize_tag( $matches ) {
    533         return '<' . strtolower( $match[1] );
     534        return '<' . strtolower( $matches[1] );
    534535    }
    535536
  • trunk/wp-admin/import/blogware.php

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

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

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

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

    r11934 r12104  
    299299        foreach ( $list as $struc ) {
    300300
    301             if ( '.' == $struct['name'] || '..' == $struc['name'] )
     301            if ( '.' == $struc['name'] || '..' == $struc['name'] )
    302302                continue;
    303303
     
    305305                continue;
    306306
    307             if ( $limit_file && $srtuc['name'] != $limit_file )
     307            if ( $limit_file && $struc['name'] != $limit_file )
    308308                continue;
    309309
Note: See TracChangeset for help on using the changeset viewer.