WP Armour – Honeypot Anti Spam - Version 1.5.8

Version Description

  • Fixed Extended verion save settings.
Download this release

Release Info

Developer dnesscarkey
Plugin Icon 128x128 WP Armour – Honeypot Anti Spam
Version 1.5.8
Comparing to
See all releases

Code changes from version 1.5.7 to 1.5.8

includes/views/wpa_main.php CHANGED
@@ -4,6 +4,10 @@ if (isset($_POST['submit-wpa-general-settings'])){
4
  $saveReturn = wpa_save_settings();
5
  }
6
 
 
 
 
 
7
  if (isset($_GET['tab']) && array_key_exists($_GET['tab'],$wpa_tabs)){
8
  $currentTab = $_GET['tab'];
9
  } else {
4
  $saveReturn = wpa_save_settings();
5
  }
6
 
7
+ if (isset($_POST['submit-wpae-general-settings'])){
8
+ $saveReturn = wpae_save_settings();
9
+ }
10
+
11
  if (isset($_GET['tab']) && array_key_exists($_GET['tab'],$wpa_tabs)){
12
  $currentTab = $_GET['tab'];
13
  } else {
includes/views/wpa_notice.php CHANGED
@@ -16,12 +16,15 @@ function wpa_reviews_notice(){
16
 
17
  if ($installedDays > 30 && $all_spam_blocked > 30){
18
  echo '<div class="updated success" style="padding:10px; font-size:16px; line-height:1.6;color:#205225;">
19
- Hey, WP Armour Anti Spam has blocked <strong>'.$all_spam_blocked.'</strong> spam submissions till date - that’s awesome! Could you please do us a BIG favor and give it a 5-star rating on WordPress ? Just to help us spread the word and boost our motivation.<br/>
 
 
20
 
21
  <ul style="padding-left:50px;list-style-type: square;">
22
  <li><a href="https://wordpress.org/support/plugin/honeypot/reviews/?filter=5" target="_blank">Ok, you deserve it</a></li>
23
  <li><a href="https://dineshkarki.com.np/contact" target="_blank">I still have problem !!</a></li>
24
  <li><a href="?wpa_reviews_notice_hide=1">I already did</a></li>
 
25
  <li><a href="?wpa_reviews_notice_hide=1">Hide this message</a></li>
26
  </ul>
27
 
16
 
17
  if ($installedDays > 30 && $all_spam_blocked > 30){
18
  echo '<div class="updated success" style="padding:10px; font-size:16px; line-height:1.6;color:#205225;">
19
+ Hey, WP Armour Anti Spam has blocked <strong>'.$all_spam_blocked.'</strong> spam submissions till date - that’s awesome! Could you please do us a BIG favor and give it a 5-star rating on WordPress ? Just to help us spread the word and boost our motivation.<br/><br/>
20
+
21
+ Also, you can support us on Patreon for its development and keep ahead of spammers. <a href="https://www.patreon.com/wparmour" target="_blank">https://www.patreon.com/wparmour</a>
22
 
23
  <ul style="padding-left:50px;list-style-type: square;">
24
  <li><a href="https://wordpress.org/support/plugin/honeypot/reviews/?filter=5" target="_blank">Ok, you deserve it</a></li>
25
  <li><a href="https://dineshkarki.com.np/contact" target="_blank">I still have problem !!</a></li>
26
  <li><a href="?wpa_reviews_notice_hide=1">I already did</a></li>
27
+ <li><a href="https://www.patreon.com/wparmour" target="_blank">Support Us on Patreon</a></li>
28
  <li><a href="?wpa_reviews_notice_hide=1">Hide this message</a></li>
29
  </ul>
30
 
includes/views/wpa_sidebar.php CHANGED
@@ -3,7 +3,6 @@
3
  ul.uaf_list{ list-style-type:square;margin-left: 2em;}
4
  </style>
5
  <br/>
6
-
7
  <table class="wp-list-table widefat fixed bookmarks">
8
  <thead>
9
  <tr>
3
  ul.uaf_list{ list-style-type:square;margin-left: 2em;}
4
  </style>
5
  <br/>
 
6
  <table class="wp-list-table widefat fixed bookmarks">
7
  <thead>
8
  <tr>
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://dineshkarki.com.np/wp-armour-anti-spam
4
  Tags: anti spam, spam checker, spam filter, gravity forms, contact form 7
5
  Requires at least: 3.0
6
  Tested up to: 5.6
7
- Stable tag: 1.5.7
8
  License: GPLv2 or later
9
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -119,6 +119,9 @@ With WP Armour - Honeypot Anti Spam plugin it is No. But if you want you can use
119
 
120
  == Changelog ==
121
 
 
 
 
122
  = = 1.5.7 =
123
  * Fixed security issue.
124
 
4
  Tags: anti spam, spam checker, spam filter, gravity forms, contact form 7
5
  Requires at least: 3.0
6
  Tested up to: 5.6
7
+ Stable tag: 1.5.8
8
  License: GPLv2 or later
9
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
10
 
119
 
120
  == Changelog ==
121
 
122
+ = = 1.5.8 =
123
+ * Fixed Extended verion save settings.
124
+
125
  = = 1.5.7 =
126
  * Fixed security issue.
127
 
wp-armour.php CHANGED
@@ -5,7 +5,7 @@ Plugin Name: WP Armour - Honeypot Anti Spam
5
  Plugin URI: http://wordpress.org/plugins/honeypot/
6
  Description: Add honeypot anti spam protection.
7
  Author: Dnesscarkey
8
- Version: 1.5.7
9
  Author URI: https://dineshkarki.com.np/wp-armour-anti-spam
10
  */
11
 
5
  Plugin URI: http://wordpress.org/plugins/honeypot/
6
  Description: Add honeypot anti spam protection.
7
  Author: Dnesscarkey
8
+ Version: 1.5.8
9
  Author URI: https://dineshkarki.com.np/wp-armour-anti-spam
10
  */
11