Changeset 31090 for trunk/src/wp-admin/includes/class-wp-importer.php
- Timestamp:
- 01/08/2015 07:04:40 AM (11 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-admin/includes/class-wp-importer.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-importer.php
r29707 r31090 274 274 275 275 $last_arg = $key; 276 } else if ( (bool) preg_match( "/^-([a-zA-Z0-9]+)/", $args[$i], $match ) ) {276 } elseif ( (bool) preg_match( "/^-([a-zA-Z0-9]+)/", $args[$i], $match ) ) { 277 277 for ( $j = 0, $jl = strlen( $match[1] ); $j < $jl; $j++ ) { 278 278 $key = $match[1]{$j}; … … 281 281 282 282 $last_arg = $key; 283 } else if ( $last_arg !== null ) {283 } elseif ( $last_arg !== null ) { 284 284 $out[$last_arg] = $args[$i]; 285 285 }
Note: See TracChangeset
for help on using the changeset viewer.