Version Description
2018/Oct/13 =
TWEAK: Replace use of the submit_button() function (one user was seeing a fatal error related to it)
Download this release
Release Info
Developer | DavidAnderson |
Plugin | SSH SFTP Updater Support |
Version | 0.7.5 |
Comparing to | |
See all releases |
Code changes from version 0.7.4 to 0.7.5
- readme.txt +7 -3
- sftp.php +5 -3
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: DavidAnderson, TerraFrost, pmbaldha
|
|
3 |
Donate link: http://sourceforge.net/donate/index.php?group_id=198487
|
4 |
Tags: ssh, sftp
|
5 |
Requires at least: 3.1
|
6 |
-
Tested up to:
|
7 |
-
Stable tag: 0.7.
|
8 |
|
9 |
"SSH SFTP Updater Support" is the easiest way to keep your Wordpress installation up-to-date with SFTP.
|
10 |
|
@@ -28,6 +28,10 @@ This plugin is offered and maintained as a free service to the WP community. You
|
|
28 |
|
29 |
== Changelog ==
|
30 |
|
|
|
|
|
|
|
|
|
31 |
= 0.7.4 - 2018/Aug/25 =
|
32 |
|
33 |
* TWEAK: Update phpseclib to latest version (1.0.10)
|
@@ -80,4 +84,4 @@ This plugin is offered and maintained as a free service to the WP community. You
|
|
80 |
* Initial Release
|
81 |
|
82 |
== Upgrade Notice ==
|
83 |
-
* 0.7.
|
3 |
Donate link: http://sourceforge.net/donate/index.php?group_id=198487
|
4 |
Tags: ssh, sftp
|
5 |
Requires at least: 3.1
|
6 |
+
Tested up to: 5.0
|
7 |
+
Stable tag: 0.7.5
|
8 |
|
9 |
"SSH SFTP Updater Support" is the easiest way to keep your Wordpress installation up-to-date with SFTP.
|
10 |
|
28 |
|
29 |
== Changelog ==
|
30 |
|
31 |
+
= 0.7.5 - 2018/Oct/13 =
|
32 |
+
|
33 |
+
* TWEAK: Replace use of the submit_button() function (one user was seeing a fatal error related to it)
|
34 |
+
|
35 |
= 0.7.4 - 2018/Aug/25 =
|
36 |
|
37 |
* TWEAK: Update phpseclib to latest version (1.0.10)
|
84 |
* Initial Release
|
85 |
|
86 |
== Upgrade Notice ==
|
87 |
+
* 0.7.5: Replace use of the submit_button() function (one user was seeing a fatal error related to it)
|
sftp.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: SSH SFTP Updater Support
|
4 |
Plugin URI: https://wordpress.org/plugins/ssh-sftp-updater-support/
|
5 |
Description: Update your WordPress blog / plugins via SFTP without libssh2
|
6 |
-
Version: 0.7.
|
7 |
Author: TerraFrost, David Anderson + Team Updraft
|
8 |
Author URI: https://updraftplus.com/
|
9 |
*/
|
@@ -12,7 +12,7 @@ if (!defined('ABSPATH')) die('No direct access allowed');
|
|
12 |
|
13 |
define('SSH_SFTP_UPDATER_SUPPORT_MAIN_PATH', plugin_dir_path(__FILE__));
|
14 |
define('SSH_SFTP_UPDATER_SUPPORT_BASENAME', plugin_basename(__FILE__));
|
15 |
-
define('SSH_SFTP_UPDATER_SUPPORT_VERSION', '0.7.
|
16 |
define('SSH_SFTP_UPDATER_SUPPORT_URL', plugin_dir_url(__FILE__));
|
17 |
// see http://adambrown.info/p/wp_hooks/hook/<filter name>
|
18 |
add_filter('filesystem_method', 'phpseclib_filesystem_method', 10, 2); // since 2.6 - WordPress will ignore the ssh option if the php ssh extension is not loaded
|
@@ -252,8 +252,10 @@ foreach ( (array) $extra_fields as $field ) {
|
|
252 |
if ( isset( $_POST[ $field ] ) )
|
253 |
echo '<input type="hidden" name="' . esc_attr( $field ) . '" value="' . esc_attr( stripslashes( $_POST[ $field ] ) ) . '" />';
|
254 |
}
|
255 |
-
submit_button( __( 'Proceed' ), 'button', 'upgrade' );
|
256 |
?>
|
|
|
|
|
|
|
257 |
</div>
|
258 |
</form>
|
259 |
<?php
|
3 |
Plugin Name: SSH SFTP Updater Support
|
4 |
Plugin URI: https://wordpress.org/plugins/ssh-sftp-updater-support/
|
5 |
Description: Update your WordPress blog / plugins via SFTP without libssh2
|
6 |
+
Version: 0.7.5
|
7 |
Author: TerraFrost, David Anderson + Team Updraft
|
8 |
Author URI: https://updraftplus.com/
|
9 |
*/
|
12 |
|
13 |
define('SSH_SFTP_UPDATER_SUPPORT_MAIN_PATH', plugin_dir_path(__FILE__));
|
14 |
define('SSH_SFTP_UPDATER_SUPPORT_BASENAME', plugin_basename(__FILE__));
|
15 |
+
define('SSH_SFTP_UPDATER_SUPPORT_VERSION', '0.7.5');
|
16 |
define('SSH_SFTP_UPDATER_SUPPORT_URL', plugin_dir_url(__FILE__));
|
17 |
// see http://adambrown.info/p/wp_hooks/hook/<filter name>
|
18 |
add_filter('filesystem_method', 'phpseclib_filesystem_method', 10, 2); // since 2.6 - WordPress will ignore the ssh option if the php ssh extension is not loaded
|
252 |
if ( isset( $_POST[ $field ] ) )
|
253 |
echo '<input type="hidden" name="' . esc_attr( $field ) . '" value="' . esc_attr( stripslashes( $_POST[ $field ] ) ) . '" />';
|
254 |
}
|
|
|
255 |
?>
|
256 |
+
<p class="submit">
|
257 |
+
<input type="submit" name="upgrade" id="upgrade" class="button" value="<?php esc_attr_e( 'Proceed' ); ?>" />
|
258 |
+
</p>
|
259 |
</div>
|
260 |
</form>
|
261 |
<?php
|