Version Description
Download this release
Release Info
Developer | Mat Lipe |
Plugin | Go Live Update URLS |
Version | 5.0.5 |
Comparing to | |
See all releases |
Code changes from version 5.0.4 to 5.0.5
- go-live-update-urls.php +2 -2
- readme.txt +1 -1
- src/Admin_Page.php +1 -1
go-live-update-urls.php
CHANGED
@@ -5,11 +5,11 @@ Plugin URI: https://matlipe.com/go-live-update-urls/
|
|
5 |
Description: Updates all the URLs in the database to point to the new URL when making your site live or changing domains.
|
6 |
Author: Mat Lipe
|
7 |
Author URI: https://matlipe.com/
|
8 |
-
Version: 5.0.
|
9 |
Text Domain: go-live-update-urls
|
10 |
*/
|
11 |
|
12 |
-
define( 'GO_LIVE_UPDATE_URLS_VERSION', '5.0.
|
13 |
|
14 |
/** Deprecated to be removed 6/1/18 */
|
15 |
require plugin_dir_path( __FILE__ ) . '/src/GoLiveUpdateUrls.php';
|
5 |
Description: Updates all the URLs in the database to point to the new URL when making your site live or changing domains.
|
6 |
Author: Mat Lipe
|
7 |
Author URI: https://matlipe.com/
|
8 |
+
Version: 5.0.5
|
9 |
Text Domain: go-live-update-urls
|
10 |
*/
|
11 |
|
12 |
+
define( 'GO_LIVE_UPDATE_URLS_VERSION', '5.0.5' );
|
13 |
|
14 |
/** Deprecated to be removed 6/1/18 */
|
15 |
require plugin_dir_path( __FILE__ ) . '/src/GoLiveUpdateUrls.php';
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ Tags: Go Live, Urls, Domain Changes
|
|
5 |
Requires at least: 4.5.0
|
6 |
Tested up to: 4.9.4
|
7 |
Requires PHP: 5.2.4
|
8 |
-
Stable tag: 5.0.
|
9 |
|
10 |
== Description ==
|
11 |
|
5 |
Requires at least: 4.5.0
|
6 |
Tested up to: 4.9.4
|
7 |
Requires PHP: 5.2.4
|
8 |
+
Stable tag: 5.0.5
|
9 |
|
10 |
== Description ==
|
11 |
|
src/Admin_Page.php
CHANGED
@@ -136,7 +136,7 @@ class Go_Live_Update_Urls_Admin_Page {
|
|
136 |
?>
|
137 |
<li>
|
138 |
<?php
|
139 |
-
printf( '<input name="%s[]" type="checkbox" value="%s"
|
140 |
if ( isset( $serialized_tables[ $_table ] ) ) {
|
141 |
?>
|
142 |
- <strong>
|
136 |
?>
|
137 |
<li>
|
138 |
<?php
|
139 |
+
printf( '<input name="%s[]" type="checkbox" value="%s" %s /> %s', esc_attr( self::TABLE_INPUT_NAME ), esc_attr( $_table ), checked( $checked, true, false ), esc_html( $_table ) );
|
140 |
if ( isset( $serialized_tables[ $_table ] ) ) {
|
141 |
?>
|
142 |
- <strong>
|