Changeset 12104
- Timestamp:
- 10/25/2009 05:30:58 PM (15 years ago)
- Location:
- trunk/wp-admin
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/import/blogger.php
r11964 r12104 198 198 $authhead = esc_js( __('Final Step: Author Mapping') ); 199 199 $nothing = esc_js( __('Nothing was imported. Had you already imported this blog?') ); 200 $stopping = ''; //Missing String used below. 200 201 $title = __('Blogger Blogs'); 201 202 $name = __('Blog Name'); … … 531 532 532 533 function _normalize_tag( $matches ) { 533 return '<' . strtolower( $match [1] );534 return '<' . strtolower( $matches[1] ); 534 535 } 535 536 -
trunk/wp-admin/import/blogware.php
r11964 r12104 44 44 45 45 function _normalize_tag( $matches ) { 46 return '<' . strtolower( $match [1] );46 return '<' . strtolower( $matches[1] ); 47 47 } 48 48 -
trunk/wp-admin/import/livejournal.php
r12100 r12104 326 326 327 327 function _normalize_tag( $matches ) { 328 return '<' . strtolower( $match [1] );328 return '<' . strtolower( $matches[1] ); 329 329 } 330 330 -
trunk/wp-admin/import/rss.php
r11964 r12104 45 45 46 46 function _normalize_tag( $matches ) { 47 return '<' . strtolower( $match [1] );47 return '<' . strtolower( $matches[1] ); 48 48 } 49 49 -
trunk/wp-admin/import/wordpress.php
r11964 r12104 359 359 360 360 function _normalize_tag( $matches ) { 361 return '<' . strtolower( $match [1] );361 return '<' . strtolower( $matches[1] ); 362 362 } 363 363 -
trunk/wp-admin/includes/class-wp-filesystem-ftpsockets.php
r11934 r12104 299 299 foreach ( $list as $struc ) { 300 300 301 if ( '.' == $struc t['name'] || '..' == $struc['name'] )301 if ( '.' == $struc['name'] || '..' == $struc['name'] ) 302 302 continue; 303 303 … … 305 305 continue; 306 306 307 if ( $limit_file && $s rtuc['name'] != $limit_file )307 if ( $limit_file && $struc['name'] != $limit_file ) 308 308 continue; 309 309
Note: See TracChangeset
for help on using the changeset viewer.