iThemes Security (formerly Better WP Security) - Version 6.5.1

Version Description

  • Bug Fix: Fixed logical error that prevented backups from executing.
    • Bug Fix: Fixed issue that could cause database locks to flood the database.
Download this release

Release Info

Developer chrisjean
Plugin Icon 128x128 iThemes Security (formerly Better WP Security)
Version 6.5.1
Comparing to
See all releases

Code changes from version 6.5.0 to 6.5.1

better-wp-security.php CHANGED
@@ -6,7 +6,7 @@
6
  * Description: Take the guesswork out of WordPress security. iThemes Security offers 30+ ways to lock down WordPress in an easy-to-use WordPress security plugin.
7
  * Author: iThemes
8
  * Author URI: https://ithemes.com
9
- * Version: 6.5.0
10
  * Text Domain: better-wp-security
11
  * Network: True
12
  * License: GPLv2
6
  * Description: Take the guesswork out of WordPress security. iThemes Security offers 30+ ways to lock down WordPress in an easy-to-use WordPress security plugin.
7
  * Author: iThemes
8
  * Author URI: https://ithemes.com
9
+ * Version: 6.5.1
10
  * Text Domain: better-wp-security
11
  * Network: True
12
  * License: GPLv2
core/history.txt CHANGED
@@ -564,3 +564,6 @@
564
  Enhancement: Added the itsec-get-ip filter to allow code to supply the remote IP directly.
565
  Enhancement: Enabling SSL support will only log you out if you are not already on an https connection.
566
  Enhancement: Improve password requirements compatibility with plugins and systems that integrate with WordPress Users.
 
 
 
564
  Enhancement: Added the itsec-get-ip filter to allow code to supply the remote IP directly.
565
  Enhancement: Enabling SSL support will only log you out if you are not already on an https connection.
566
  Enhancement: Improve password requirements compatibility with plugins and systems that integrate with WordPress Users.
567
+ 3.7.1 - 2017-08-23 - Chris Jean & Timothy Jacobs
568
+ Bug Fix: Fixed logical error that prevented backups from executing.
569
+ Bug Fix: Fixed issue that could cause database locks to flood the database.
core/modules/backup/class-itsec-backup.php CHANGED
@@ -82,7 +82,7 @@ class ITSEC_Backup {
82
  */
83
  public function do_backup( $one_time = false ) {
84
 
85
- if ( ITSEC_Lib::get_lock( 'backup', 180 ) ) {
86
  return new WP_Error( 'itsec-backup-do-backup-already-running', __( 'Unable to create a backup at this time since a backup is currently being created. If you wish to create an additional backup, please wait a few minutes before trying again.', 'better-wp-security' ) );
87
  }
88
 
82
  */
83
  public function do_backup( $one_time = false ) {
84
 
85
+ if ( ! ITSEC_Lib::get_lock( 'backup', 180 ) ) {
86
  return new WP_Error( 'itsec-backup-do-backup-already-running', __( 'Unable to create a backup at this time since a backup is currently being created. If you wish to create an additional backup, please wait a few minutes before trying again.', 'better-wp-security' ) );
87
  }
88
 
history.txt CHANGED
@@ -677,3 +677,6 @@
677
  Removed Old Feature: Removed the "Replace jQuery With a Safe Version" feature as its use (protecting against a specific jQuery bug: https://bugs.jquery.com/ticket/9521) is many years old and is no longer a concern.
678
  Bug Fix: Bumped version number of some scripts to ensure that they refresh properly.
679
  Bug Fix: Fixed way to work around Hide Backend on some hosts.
 
 
 
677
  Removed Old Feature: Removed the "Replace jQuery With a Safe Version" feature as its use (protecting against a specific jQuery bug: https://bugs.jquery.com/ticket/9521) is many years old and is no longer a concern.
678
  Bug Fix: Bumped version number of some scripts to ensure that they refresh properly.
679
  Bug Fix: Fixed way to work around Hide Backend on some hosts.
680
+ 6.5.1 - 2017-08-23 - Chris Jean & Timothy Jacobs
681
+ Bug Fix: Fixed logical error that prevented backups from executing.
682
+ Bug Fix: Fixed issue that could cause database locks to flood the database.
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: ithemes, chrisjean, gerroald, mattdanner, timothyblynjacobs
3
  Tags: security, security plugin, malware, hack, secure, block, SSL, admin, htaccess, lockdown, login, protect, protection, anti virus, attack, injection, login security, maintenance, permissions, prevention, authentication, administration, password, brute force, ban, permissions, bots, user agents, xml rpc, security log
4
  Requires at least: 4.6
5
  Tested up to: 4.8.1
6
- Stable tag: 6.5.0
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
@@ -188,6 +188,10 @@ Free support may be available with the help of the community in the <a href="htt
188
 
189
  == Changelog ==
190
 
 
 
 
 
191
  = 6.5.0 =
192
  * Enhancement: Simplified the SSL module to offer a simple Enable/Disable setting and simplified explanations. The legacy settings are available by selecting Advanced.
193
  * Enhancement: Added the itsec-get-ip filter to allow code to supply the remote IP directly.
@@ -354,5 +358,5 @@ Free support may be available with the help of the community in the <a href="htt
354
 
355
  == Upgrade Notice ==
356
 
357
- = 6.5.0 =
358
- Version 6.5.0 contains important bug fixes and enhancements. It is recommended for all users.
3
  Tags: security, security plugin, malware, hack, secure, block, SSL, admin, htaccess, lockdown, login, protect, protection, anti virus, attack, injection, login security, maintenance, permissions, prevention, authentication, administration, password, brute force, ban, permissions, bots, user agents, xml rpc, security log
4
  Requires at least: 4.6
5
  Tested up to: 4.8.1
6
+ Stable tag: 6.5.1
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
188
 
189
  == Changelog ==
190
 
191
+ = 6.5.1 =
192
+ * Bug Fix: Fixed logical error that prevented backups from executing.
193
+ * Bug Fix: Fixed issue that could cause database locks to flood the database.
194
+
195
  = 6.5.0 =
196
  * Enhancement: Simplified the SSL module to offer a simple Enable/Disable setting and simplified explanations. The legacy settings are available by selecting Advanced.
197
  * Enhancement: Added the itsec-get-ip filter to allow code to supply the remote IP directly.
358
 
359
  == Upgrade Notice ==
360
 
361
+ = 6.5.1 =
362
+ Version 6.5.1 contains important bug fixes. It is recommended for all users.