Comments – wpDiscuz - Version 7.3.14

Version Description

Download this release

Release Info

Developer AdvancedCoding
Plugin Icon 128x128 Comments – wpDiscuz
Version 7.3.14
Comparing to
See all releases

Code changes from version 7.3.13 to 7.3.14

class.WpdiscuzCore.php CHANGED
@@ -2,7 +2,7 @@
2
  /*
3
  * Plugin Name: wpDiscuz
4
  * Description: #1 WordPress Comment Plugin. Innovative, modern and feature-rich comment system to supercharge your website comment section.
5
- * Version: 7.3.13
6
  * Author: gVectors Team
7
  * Author URI: https://gvectors.com/
8
  * Plugin URI: https://wpdiscuz.com/
2
  /*
3
  * Plugin Name: wpDiscuz
4
  * Description: #1 WordPress Comment Plugin. Innovative, modern and feature-rich comment system to supercharge your website comment section.
5
+ * Version: 7.3.14
6
  * Author: gVectors Team
7
  * Author URI: https://gvectors.com/
8
  * Plugin URI: https://wpdiscuz.com/
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: gVectors Team
3
  Tags: comment, comments, ajax comments, comment form, comment fields
4
  Requires at least: 5.0
5
  Tested up to: 5.9
6
- Stable tag: 7.3.13
7
  Requires PHP: 5.6 and higher
8
  License: GPLv3
9
  License URI: https://www.gnu.org/licenses/gpl-3.0.html
@@ -185,6 +185,10 @@ Nothing will be lost! **Comments - wpDiscuz** will show all old comments.
185
 
186
  == Changelog ==
187
 
 
 
 
 
188
  = Comments - wpDiscuz v7.3.13 - 19.03.2022 =
189
 
190
  * Modified: Exclude WooCommerce "order_note" comment type from statistics
3
  Tags: comment, comments, ajax comments, comment form, comment fields
4
  Requires at least: 5.0
5
  Tested up to: 5.9
6
+ Stable tag: 7.3.14
7
  Requires PHP: 5.6 and higher
8
  License: GPLv3
9
  License URI: https://www.gnu.org/licenses/gpl-3.0.html
185
 
186
  == Changelog ==
187
 
188
+ = Comments - wpDiscuz v7.3.14 - 19.03.2022 =
189
+
190
+ Fixed Bug: wpdiscuz-ajax not found
191
+
192
  = Comments - wpDiscuz v7.3.13 - 19.03.2022 =
193
 
194
  * Modified: Exclude WooCommerce "order_note" comment type from statistics
utils/ajax/wpdiscuz-ajax.php CHANGED
@@ -2,7 +2,7 @@
2
 
3
  //mimic the actuall admin-ajax
4
  define("DOING_AJAX", true);
5
- $wpdiscuz_ajax_action = WpdiscuzHelper::sanitize(INPUT_POST, 'action', "FILTER_SANITIZE_STRING");
6
  if (!$wpdiscuz_ajax_action) {
7
  die('-1');
8
  }
2
 
3
  //mimic the actuall admin-ajax
4
  define("DOING_AJAX", true);
5
+ $wpdiscuz_ajax_action = !empty($_POST['action']) ? sanitize_text_field($_POST['action']) : '';
6
  if (!$wpdiscuz_ajax_action) {
7
  die('-1');
8
  }