Changeset 3398027
- Timestamp:
- 11/18/2025 12:04:48 PM (5 months ago)
- Location:
- btw-importer
- Files:
-
- 17 added
- 6 edited
-
tags/2.3.0 (added)
-
tags/2.3.0/LICENSE (added)
-
tags/2.3.0/assets (added)
-
tags/2.3.0/assets/screenshot-1.png (added)
-
tags/2.3.0/assets/screenshot-2.png (added)
-
tags/2.3.0/assets/screenshot-3.png (added)
-
tags/2.3.0/assets/screenshot-4.png (added)
-
tags/2.3.0/btw-importer.js (added)
-
tags/2.3.0/btw-importer.php (added)
-
tags/2.3.0/changelog.md (added)
-
tags/2.3.0/importer.php (added)
-
tags/2.3.0/index.php (added)
-
tags/2.3.0/languages (added)
-
tags/2.3.0/readme.md (added)
-
tags/2.3.0/readme.txt (added)
-
tags/2.3.0/redirect-log.php (added)
-
tags/2.3.0/redirect.php (added)
-
trunk/btw-importer.js (modified) (2 diffs)
-
trunk/btw-importer.php (modified) (1 diff)
-
trunk/changelog.md (modified) (1 diff)
-
trunk/readme.txt (modified) (3 diffs)
-
trunk/redirect-log.php (modified) (1 diff)
-
trunk/redirect.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
btw-importer/trunk/btw-importer.js
r3359514 r3398027 35 35 $('#progress').append('<br>❌ ' + escapeHtml(response.data)); 36 36 isImporting = false; // stop on error 37 $('#importOverlay').hide(); 37 38 return; 38 39 } … … 42 43 $('#progress').append('<br>⚠ No posts/pages found.'); 43 44 isImporting = false; 45 $('#importOverlay').hide(); 44 46 return; 45 47 } -
btw-importer/trunk/btw-importer.php
r3377003 r3398027 4 4 Plugin URI: https://github.com/mnasikin/btw-importer 5 5 Description: Simple yet powerful plugin to Migrate Blogger to WordPress in one click for free. Import .atom from Google Takeout and the plugin will migrate your content. 6 Version: 2. 2.06 Version: 2.3.0 7 7 Author: M. Nasikin 8 8 Author URI: https://github.com/mnasikin/ -
btw-importer/trunk/changelog.md
r3377003 r3398027 7 7 8 8 ## 🧾 Changelog 9 10 ### 2.3.0 11 - Fix post type: `page` redirect not working properly 12 - Auto hide overlay on fail, error, or stopped import 13 - Fix Undefined variable $total_items on `Redirect Log` page 9 14 10 15 ### 2.2.0 -
btw-importer/trunk/readme.txt
r3377003 r3398027 4 4 Requires at least: 6.8.0 5 5 Tested up to: 6.8 6 Stable tag: 2. 2.06 Stable tag: 2.3.0 7 7 Requires PHP: 7.4 8 8 License: MIT … … 67 67 68 68 == Changelog == 69 = 2.3.0 = 70 * Fix post type: `page` redirect not working properly 71 * Auto hide overlay on fail, error, or stopped import 72 * Fix Undefined variable $total_items on `Redirect Log` page 73 69 74 = 2.2.0 = 70 75 * Remove comments from imported content. Previously, comments imported as posts … … 87 92 88 93 == Upgrade Notice == 89 = 2. 2.0 =90 Please check the changelog tab to check what's new .94 = 2.3.0 = 95 Please check the changelog tab to check what's new on this version. -
btw-importer/trunk/redirect-log.php
r3367871 r3398027 103 103 ); 104 104 105 $total_items = (int) $wpdb->get_var("SELECT FOUND_ROWS()"); 106 105 107 if (!$results) { 106 108 echo '<p>No redirects found.</p>'; -
btw-importer/trunk/redirect.php
r3359514 r3398027 22 22 23 23 // Match Blogger old permalink: /YYYY/MM/slug.html 24 if (preg_match('# /\d{4}/\d{2}/.+\.html$#', $current_path)) {24 if (preg_match('#(/\\d{4}/\\d{2}/.+\\.html$|/p/.+\\.html$)#', $current_path)) { 25 25 $query = new WP_Query([ 26 26 'post_type' => ['post', 'page'],
Note: See TracChangeset
for help on using the changeset viewer.