Changeset 1953632
- Timestamp:
- 10/09/2018 02:21:45 AM (7 years ago)
- Location:
- wing-migrator/trunk/classes/utils
- Files:
-
- 2 edited
-
class-wwm-migration-tar.php (modified) (1 diff)
-
class-wwm-migration-zip.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
wing-migrator/trunk/classes/utils/class-wwm-migration-tar.php
r1949573 r1953632 72 72 // exclude mu-plugins itself 73 73 continue; 74 } elseif (strpos( $file_path, ' wing-migrator') !== false ) {74 } elseif (strpos( $file_path, '/plugins/wing-migrator') !== false ) { 75 75 // exclude migration plugin itself 76 76 continue; 77 } elseif (strpos( $file_path, ' jetpack') !== false ) {77 } elseif (strpos( $file_path, '/plugins/jetpack') !== false ) { 78 78 // exclude jetpack plugin 79 79 continue; 80 } elseif (strpos( $file_path, ' all-in-one-wp-migration') !== false ) {80 } elseif (strpos( $file_path, '/plugins/all-in-one-wp-migration') !== false ) { 81 81 // exclude All-in-One WP Migration plugin 82 82 continue; 83 } elseif (strpos( $file_path, ' backwpup-') !== false ) {83 } elseif (strpos( $file_path, '/backwpup-') !== false ) { 84 84 // exclude backwpup plugin backup directory 85 85 continue; -
wing-migrator/trunk/classes/utils/class-wwm-migration-zip.php
r1949573 r1953632 87 87 if ( $file_info->isDir() ) { 88 88 continue; 89 } elseif (strpos( $file_path, ' mu-plugins') !== false ) {89 } elseif (strpos( $file_path, '/mu-plugins') !== false ) { 90 90 // exclude mu-plugins itself 91 91 continue; 92 } elseif (strpos( $file_path, ' wing-migrator') !== false ) {92 } elseif (strpos( $file_path, '/plugins/wing-migrator') !== false ) { 93 93 // exclude migration plugin itself 94 94 continue; 95 } elseif (strpos( $file_path, ' jetpack') !== false ) {95 } elseif (strpos( $file_path, '/plugins/jetpack') !== false ) { 96 96 // exclude jetpack plugin 97 97 continue; 98 } elseif (strpos( $file_path, ' all-in-one-wp-migration') !== false ) {98 } elseif (strpos( $file_path, '/plugins/all-in-one-wp-migration') !== false ) { 99 99 // exclude All-in-One WP Migration plugin 100 100 continue; 101 } elseif (strpos( $file_path, ' backwpup-') !== false ) {101 } elseif (strpos( $file_path, '/backwpup-') !== false ) { 102 102 // exclude backwpup plugin backup directory 103 103 continue;
Note: See TracChangeset
for help on using the changeset viewer.