Changeset 2759721
- Timestamp:
- 07/21/2022 10:30:58 AM (4 years ago)
- Location:
- interview/trunk
- Files:
-
- 2 edited
-
interview.php (modified) (2 diffs)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
interview/trunk/interview.php
r2759471 r2759721 22 22 { 23 23 private $settings_options; 24 public static $debug = true;24 public static $debug = false; 25 25 26 26 public function __construct() … … 418 418 if (!wp_verify_nonce($_POST['nonce'], 'interview_nonce')) die('Nonce value cannot be verified.'); 419 419 global $wpdb; 420 $message = stripslashes( sanitize_text_field($_POST['message']));420 $message = stripslashes($_POST['message']); 421 421 $subject = "🎤 " . stripslashes(sanitize_text_field($_POST['subject']))." 🎤"; 422 422 $inviteEmails = stripslashes(sanitize_text_field($_POST['inviteEmails'])); -
interview/trunk/readme.txt
r2759471 r2759721 3 3 Tags: interviews, screen recorder, record, post guest 4 4 Requires at least: 4.5 5 Tested up to: 5.96 Stable tag: 1.0 35 Tested up to: 6.0 6 Stable tag: 1.04 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html
Note: See TracChangeset
for help on using the changeset viewer.