Changeset 2863148
- Timestamp:
- 02/10/2023 10:36:39 AM (3 years ago)
- Location:
- cf7-reply-manager
- Files:
-
- 4 edited
- 6 copied
-
tags/1.2.3 (copied) (copied from cf7-reply-manager/trunk)
-
tags/1.2.3/admin/partials/form-list.php (copied) (copied from cf7-reply-manager/trunk/admin/partials/form-list.php) (2 diffs)
-
tags/1.2.3/admin/partials/replies.php (copied) (copied from cf7-reply-manager/trunk/admin/partials/replies.php)
-
tags/1.2.3/contact-form-7-reply-manager.php (copied) (copied from cf7-reply-manager/trunk/contact-form-7-reply-manager.php) (2 diffs)
-
tags/1.2.3/includes/class-cf7-reply-manager.php (copied) (copied from cf7-reply-manager/trunk/includes/class-cf7-reply-manager.php) (1 diff)
-
tags/1.2.3/readme.txt (copied) (copied from cf7-reply-manager/trunk/readme.txt) (1 diff)
-
trunk/admin/partials/form-list.php (modified) (2 diffs)
-
trunk/contact-form-7-reply-manager.php (modified) (2 diffs)
-
trunk/includes/class-cf7-reply-manager.php (modified) (1 diff)
-
trunk/readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
cf7-reply-manager/tags/1.2.3/admin/partials/form-list.php
r2862843 r2863148 40 40 $status = 'rejected'; 41 41 $subject = sanitize_text_field($formData->rejection_subject); 42 $body = wp_kses_post($formData->rejection_message);42 $body = nl2br(wp_kses_post($formData->rejection_message)); 43 43 if($formData->rejection_attachment) { 44 44 $attachment = $uploaddir . $formData->approval_attachment; … … 48 48 $status = 'approved'; 49 49 $subject = sanitize_text_field($formData->approval_subject); 50 $body = wp_kses_post($formData->approval_message);50 $body = nl2br(wp_kses_post($formData->approval_message)); 51 51 if($formData->approval_attachment) { 52 52 $attachment = $uploaddir . $formData->approval_attachment; -
cf7-reply-manager/tags/1.2.3/contact-form-7-reply-manager.php
r2862843 r2863148 8 8 * Plugin Name: CF7 Reply Manager 9 9 * Description: CF7 add-on to provide easy, pre-compiled answers for each form in your website 10 * Version: 1.2. 210 * Version: 1.2.3 11 11 * Author: Bigfive 12 12 * Author URI: https://bigfive.it/ … … 28 28 29 29 global $cf7rm_current_version; 30 $cf7rm_current_version = '1.2. 2';30 $cf7rm_current_version = '1.2.3'; 31 31 32 32 /** -
cf7-reply-manager/tags/1.2.3/includes/class-cf7-reply-manager.php
r2862843 r2863148 67 67 68 68 $this->plugin_name = 'cf7_reply_manager'; 69 $this->version = '1.2. 2';69 $this->version = '1.2.3'; 70 70 71 71 // $this->load_dependencies(); -
cf7-reply-manager/tags/1.2.3/readme.txt
r2862843 r2863148 46 46 = 1.2.2 = 47 47 * Select the name of the e-mail field 48 = 1.2.3 = 49 * Bugfix -
cf7-reply-manager/trunk/admin/partials/form-list.php
r2862843 r2863148 40 40 $status = 'rejected'; 41 41 $subject = sanitize_text_field($formData->rejection_subject); 42 $body = wp_kses_post($formData->rejection_message);42 $body = nl2br(wp_kses_post($formData->rejection_message)); 43 43 if($formData->rejection_attachment) { 44 44 $attachment = $uploaddir . $formData->approval_attachment; … … 48 48 $status = 'approved'; 49 49 $subject = sanitize_text_field($formData->approval_subject); 50 $body = wp_kses_post($formData->approval_message);50 $body = nl2br(wp_kses_post($formData->approval_message)); 51 51 if($formData->approval_attachment) { 52 52 $attachment = $uploaddir . $formData->approval_attachment; -
cf7-reply-manager/trunk/contact-form-7-reply-manager.php
r2862843 r2863148 8 8 * Plugin Name: CF7 Reply Manager 9 9 * Description: CF7 add-on to provide easy, pre-compiled answers for each form in your website 10 * Version: 1.2. 210 * Version: 1.2.3 11 11 * Author: Bigfive 12 12 * Author URI: https://bigfive.it/ … … 28 28 29 29 global $cf7rm_current_version; 30 $cf7rm_current_version = '1.2. 2';30 $cf7rm_current_version = '1.2.3'; 31 31 32 32 /** -
cf7-reply-manager/trunk/includes/class-cf7-reply-manager.php
r2862843 r2863148 67 67 68 68 $this->plugin_name = 'cf7_reply_manager'; 69 $this->version = '1.2. 2';69 $this->version = '1.2.3'; 70 70 71 71 // $this->load_dependencies(); -
cf7-reply-manager/trunk/readme.txt
r2862843 r2863148 46 46 = 1.2.2 = 47 47 * Select the name of the e-mail field 48 = 1.2.3 = 49 * Bugfix
Note: See TracChangeset
for help on using the changeset viewer.