WP Downgrade | Specific Core Version - Version 1.2.5

Version Description

  • Small code improvement
Download this release

Release Info

Developer Reisetiger
Plugin Icon 128x128 WP Downgrade | Specific Core Version
Version 1.2.5
Comparing to
See all releases

Code changes from version 1.2.4 to 1.2.5

Files changed (2) hide show
  1. readme.txt +4 -1
  2. wp-downgrade.php +4 -4
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.reisetiger.net/spenden-wp-plugins/
4
  Tags: Downgrade, Core, WP-Core, Version, Rollback, Upgrade, Update, Release, Versionskontrolle
5
  Requires at least: 3.0.1
6
  Tested up to: 5.9
7
- Stable tag: 1.2.4
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -73,6 +73,9 @@ A: If there is no button for update/reinstall core on /wp-admin/update-core.php,
73
 
74
 
75
  == Changelog ==
 
 
 
76
  = 1.2.4 =
77
  * Improved code quality
78
 
4
  Tags: Downgrade, Core, WP-Core, Version, Rollback, Upgrade, Update, Release, Versionskontrolle
5
  Requires at least: 3.0.1
6
  Tested up to: 5.9
7
+ Stable tag: 1.2.5
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
73
 
74
 
75
  == Changelog ==
76
+ = 1.2.5 =
77
+ * Small code improvement
78
+
79
  = 1.2.4 =
80
  * Improved code quality
81
 
wp-downgrade.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: WP Downgrade | Specific Core Version
4
  Plugin URI: https://www.reisetiger.net
5
  Description: WP Downgrade allows you to either downgrade or update WordPress Core to an arbitrary version of your choice. The version you choose is downloaded directly from wordpress.org and installed just like any regular release update. The target version WordPress allows you to update to remains constant until you enter a different one or deactivate the plugin either completely or by leaving the target version field empty.
6
- Version: 1.2.4
7
  Author: Reisetiger
8
  Author URI: https://www.reisetiger.net
9
  License: GPL2
@@ -65,7 +65,7 @@ $allowed_tags = array( 'br' => array(), 'strong' => array() );
65
  <div class="wrap">
66
  <h2>WP Downgrade Options</h2>
67
 
68
- <h3><?php _e('WP Downgrade', 'wp-downgrade'); ?>: <?php if (get_option('wpdg_specific_version_name')) { ?><span style="color: green;"><?php _e('Active', 'wp-downgrade'); ?> (<?php _e('WP', 'wp-downgrade'); ?> <?php echo get_option('wpdg_specific_version_name'); ?> <?php _e('is set as target version', 'wp-downgrade'); ?>)</span><?php } else {; ?><span style="color: red;"><?php _e('Inactive', 'wp-downgrade'); ?></span><?php }; ?></h3>
69
 
70
  <p><?php _e('WARNING! You are using this plugin entirely at your own risk! DO MAKE SURE you have a current backup of both your files and database, since a manual version change is deeply affecting your WP installation!', 'wp-downgrade'); ?></p>
71
 
@@ -112,13 +112,13 @@ else
112
 
113
  <tr valign="top">
114
  <th scope="row"><?php esc_html_e('Current WP Version', 'wp-downgrade'); ?>:</th>
115
- <td><?php echo $wp_version; ?></td>
116
  <td></td>
117
  </tr>
118
 
119
  <tr valign="top">
120
  <th scope="row"><?php esc_html_e('Language Detected', 'wp-downgrade'); ?>:</th>
121
- <td><?php echo get_locale() ?></td>
122
  <td></td>
123
  </tr>
124
 
3
  Plugin Name: WP Downgrade | Specific Core Version
4
  Plugin URI: https://www.reisetiger.net
5
  Description: WP Downgrade allows you to either downgrade or update WordPress Core to an arbitrary version of your choice. The version you choose is downloaded directly from wordpress.org and installed just like any regular release update. The target version WordPress allows you to update to remains constant until you enter a different one or deactivate the plugin either completely or by leaving the target version field empty.
6
+ Version: 1.2.5
7
  Author: Reisetiger
8
  Author URI: https://www.reisetiger.net
9
  License: GPL2
65
  <div class="wrap">
66
  <h2>WP Downgrade Options</h2>
67
 
68
+ <h3><?php _e('WP Downgrade', 'wp-downgrade'); ?>: <?php if (get_option('wpdg_specific_version_name')) { ?><span style="color: green;"><?php _e('Active', 'wp-downgrade'); ?> (<?php _e('WP', 'wp-downgrade'); ?> <?php echo esc_html(get_option('wpdg_specific_version_name')); ?> <?php _e('is set as target version', 'wp-downgrade'); ?>)</span><?php } else {; ?><span style="color: red;"><?php _e('Inactive', 'wp-downgrade'); ?></span><?php }; ?></h3>
69
 
70
  <p><?php _e('WARNING! You are using this plugin entirely at your own risk! DO MAKE SURE you have a current backup of both your files and database, since a manual version change is deeply affecting your WP installation!', 'wp-downgrade'); ?></p>
71
 
112
 
113
  <tr valign="top">
114
  <th scope="row"><?php esc_html_e('Current WP Version', 'wp-downgrade'); ?>:</th>
115
+ <td><?php echo esc_html($wp_version); ?></td>
116
  <td></td>
117
  </tr>
118
 
119
  <tr valign="top">
120
  <th scope="row"><?php esc_html_e('Language Detected', 'wp-downgrade'); ?>:</th>
121
+ <td><?php echo esc_html(get_locale()) ?></td>
122
  <td></td>
123
  </tr>
124