Version Description
- Improved sanitization of table names.
- Fully support PHP 8.
- Tested to WordPress 5.7.2.
Download this release
Release Info
Developer | Mat Lipe |
Plugin | Go Live Update URLS |
Version | 6.3.2 |
Comparing to | |
See all releases |
Code changes from version 6.3.1 to 6.3.2
- go-live-update-urls.php +2 -2
- readme.txt +7 -2
- src/Admin.php +1 -1
go-live-update-urls.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* Description: Updates all the URLs in the database to point to a new URL when making your site live or changing domains.
|
6 |
* Author: OnPoint Plugins
|
7 |
* Author URI: https://onpointplugins.com/
|
8 |
-
* Version: 6.3.
|
9 |
* Text Domain: go-live-update-urls
|
10 |
* Domain Path: /languages/
|
11 |
* Network: false
|
@@ -15,7 +15,7 @@
|
|
15 |
* @package go-live-update-urls
|
16 |
*/
|
17 |
|
18 |
-
define( 'GO_LIVE_UPDATE_URLS_VERSION', '6.3.
|
19 |
define( 'GO_LIVE_UPDATE_URLS_REQUIRED_PRO_VERSION', '6.2.4' );
|
20 |
define( 'GO_LIVE_UPDATE_URLS_URL', plugin_dir_url( __FILE__ ) );
|
21 |
|
5 |
* Description: Updates all the URLs in the database to point to a new URL when making your site live or changing domains.
|
6 |
* Author: OnPoint Plugins
|
7 |
* Author URI: https://onpointplugins.com/
|
8 |
+
* Version: 6.3.2
|
9 |
* Text Domain: go-live-update-urls
|
10 |
* Domain Path: /languages/
|
11 |
* Network: false
|
15 |
* @package go-live-update-urls
|
16 |
*/
|
17 |
|
18 |
+
define( 'GO_LIVE_UPDATE_URLS_VERSION', '6.3.2' );
|
19 |
define( 'GO_LIVE_UPDATE_URLS_REQUIRED_PRO_VERSION', '6.2.4' );
|
20 |
define( 'GO_LIVE_UPDATE_URLS_URL', plugin_dir_url( __FILE__ ) );
|
21 |
|
readme.txt
CHANGED
@@ -3,9 +3,9 @@ Contributors: Mat Lipe, onpointplugins
|
|
3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=paypal%40onpointplugins%2ecom&lc=US&item_name=Go%20Live%20Update%20Urls&no_note=0¤cy_code=USD&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHostedGuest
|
4 |
Tags: urls, launching, site changes, tools, domain, domains, domain changes, url changes
|
5 |
Requires at least: 5.2.0
|
6 |
-
Tested up to: 5.
|
7 |
Requires PHP: 5.6.0
|
8 |
-
Stable tag: 6.3.
|
9 |
|
10 |
== Description ==
|
11 |
|
@@ -102,6 +102,11 @@ If you wish to try to update tables mentioned as "not safe" anyway, you may make
|
|
102 |
3. Update prevented due to incomplete data entered.
|
103 |
|
104 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
105 |
= 6.3.1 =
|
106 |
* Tested to WordPress 5.6.1.
|
107 |
* Improved translation process and documentation.
|
3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=paypal%40onpointplugins%2ecom&lc=US&item_name=Go%20Live%20Update%20Urls&no_note=0¤cy_code=USD&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHostedGuest
|
4 |
Tags: urls, launching, site changes, tools, domain, domains, domain changes, url changes
|
5 |
Requires at least: 5.2.0
|
6 |
+
Tested up to: 5.8.1
|
7 |
Requires PHP: 5.6.0
|
8 |
+
Stable tag: 6.3.2
|
9 |
|
10 |
== Description ==
|
11 |
|
102 |
3. Update prevented due to incomplete data entered.
|
103 |
|
104 |
== Changelog ==
|
105 |
+
= 6.3.2 =
|
106 |
+
* Improved sanitization of table names.
|
107 |
+
* Fully support PHP 8.
|
108 |
+
* Tested to WordPress 5.7.2.
|
109 |
+
|
110 |
= 6.3.1 =
|
111 |
* Tested to WordPress 5.6.1.
|
112 |
* Improved translation process and documentation.
|
src/Admin.php
CHANGED
@@ -56,7 +56,7 @@ class Admin {
|
|
56 |
return;
|
57 |
}
|
58 |
|
59 |
-
$tables = array_map( 'sanitize_text_field', \wp_unslash( $_POST[ self::TABLE_INPUT_NAME ] ) );
|
60 |
|
61 |
do_action( 'go-live-update-urls/admin-page/before-update', $old_url, $new_url, $tables );
|
62 |
|
56 |
return;
|
57 |
}
|
58 |
|
59 |
+
$tables = array_map( 'sanitize_text_field', (array) \wp_unslash( $_POST[ self::TABLE_INPUT_NAME ] ) );
|
60 |
|
61 |
do_action( 'go-live-update-urls/admin-page/before-update', $old_url, $new_url, $tables );
|
62 |
|