Changes from trunk/wp-admin/includes/class-wp-importer.php at r14760 to branches/3.0/wp-admin/includes/class-wp-importer.php at r15452
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3.0/wp-admin/includes/class-wp-importer.php
r14760 r15452 131 131 if ( empty( $parsed['path'] ) ) 132 132 $parsed['path'] = '/'; 133 if ( !$blog = get_blog_info( $parsed['host'], $parsed['path'] ) ) { 133 $blog = get_blog_details( array( 'domain' => $parsed['host'], 'path' => $parsed['path'] ) ); 134 if ( !$blog ) { 134 135 fwrite( STDERR, "Error: Could not find blog\n" ); 135 136 exit(); … … 216 217 */ 217 218 function is_user_over_quota() { 218 global $current_ user, $current_blog;219 global $current_blog; 219 220 220 221 if ( function_exists( 'upload_is_user_over_quota' ) ) {
Note: See TracChangeset
for help on using the changeset viewer.