Comments – wpDiscuz - Version 7.3.15

Version Description

Download this release

Release Info

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

Code changes from version 7.3.14 to 7.3.15

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.14
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.15
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.14
7
  Requires PHP: 5.6 and higher
8
  License: GPLv3
9
  License URI: https://www.gnu.org/licenses/gpl-3.0.html
@@ -185,7 +185,7 @@ Nothing will be lost! **Comments - wpDiscuz** will show all old comments.
185
 
186
  == Changelog ==
187
 
188
- = Comments - wpDiscuz v7.3.14 - 19.03.2022 =
189
 
190
  Fixed Bug: wpdiscuz-ajax not found
191
 
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.15
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 / v7.3.15 - 19.03.2022 =
189
 
190
  Fixed Bug: wpdiscuz-ajax not found
191
 
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 = !empty($_POST['action']) ? sanitize_text_field($_POST['action']) : '';
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 = filter_input(INPUT_POST, 'action', FILTER_SANITIZE_FULL_SPECIAL_CHARS);
6
  if (!$wpdiscuz_ajax_action) {
7
  die('-1');
8
  }