Plugin Directory

Changeset 2863148


Ignore:
Timestamp:
02/10/2023 10:36:39 AM (3 years ago)
Author:
jadascript
Message:

v1.2.3

Location:
cf7-reply-manager
Files:
4 edited
6 copied

Legend:

Unmodified
Added
Removed
  • cf7-reply-manager/tags/1.2.3/admin/partials/form-list.php

    r2862843 r2863148  
    4040      $status = 'rejected';   
    4141      $subject = sanitize_text_field($formData->rejection_subject);
    42       $body = wp_kses_post($formData->rejection_message);
     42      $body = nl2br(wp_kses_post($formData->rejection_message));
    4343      if($formData->rejection_attachment) {
    4444         $attachment = $uploaddir . $formData->approval_attachment;
     
    4848         $status = 'approved';
    4949         $subject = sanitize_text_field($formData->approval_subject);
    50          $body = wp_kses_post($formData->approval_message);
     50         $body = nl2br(wp_kses_post($formData->approval_message));
    5151         if($formData->approval_attachment) {
    5252            $attachment = $uploaddir . $formData->approval_attachment;
  • cf7-reply-manager/tags/1.2.3/contact-form-7-reply-manager.php

    r2862843 r2863148  
    88 * Plugin Name:       CF7 Reply Manager
    99 * Description:       CF7 add-on to provide easy, pre-compiled answers for each form in your website
    10  * Version:           1.2.2
     10 * Version:           1.2.3
    1111 * Author:            Bigfive
    1212 * Author URI:        https://bigfive.it/
     
    2828
    2929global $cf7rm_current_version;
    30 $cf7rm_current_version = '1.2.2';
     30$cf7rm_current_version = '1.2.3';
    3131
    3232/**
  • cf7-reply-manager/tags/1.2.3/includes/class-cf7-reply-manager.php

    r2862843 r2863148  
    6767
    6868        $this->plugin_name = 'cf7_reply_manager';
    69         $this->version = '1.2.2';
     69        $this->version = '1.2.3';
    7070
    7171        // $this->load_dependencies();
  • cf7-reply-manager/tags/1.2.3/readme.txt

    r2862843 r2863148  
    4646= 1.2.2 =
    4747* 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  
    4040      $status = 'rejected';   
    4141      $subject = sanitize_text_field($formData->rejection_subject);
    42       $body = wp_kses_post($formData->rejection_message);
     42      $body = nl2br(wp_kses_post($formData->rejection_message));
    4343      if($formData->rejection_attachment) {
    4444         $attachment = $uploaddir . $formData->approval_attachment;
     
    4848         $status = 'approved';
    4949         $subject = sanitize_text_field($formData->approval_subject);
    50          $body = wp_kses_post($formData->approval_message);
     50         $body = nl2br(wp_kses_post($formData->approval_message));
    5151         if($formData->approval_attachment) {
    5252            $attachment = $uploaddir . $formData->approval_attachment;
  • cf7-reply-manager/trunk/contact-form-7-reply-manager.php

    r2862843 r2863148  
    88 * Plugin Name:       CF7 Reply Manager
    99 * Description:       CF7 add-on to provide easy, pre-compiled answers for each form in your website
    10  * Version:           1.2.2
     10 * Version:           1.2.3
    1111 * Author:            Bigfive
    1212 * Author URI:        https://bigfive.it/
     
    2828
    2929global $cf7rm_current_version;
    30 $cf7rm_current_version = '1.2.2';
     30$cf7rm_current_version = '1.2.3';
    3131
    3232/**
  • cf7-reply-manager/trunk/includes/class-cf7-reply-manager.php

    r2862843 r2863148  
    6767
    6868        $this->plugin_name = 'cf7_reply_manager';
    69         $this->version = '1.2.2';
     69        $this->version = '1.2.3';
    7070
    7171        // $this->load_dependencies();
  • cf7-reply-manager/trunk/readme.txt

    r2862843 r2863148  
    4646= 1.2.2 =
    4747* Select the name of the e-mail field
     48= 1.2.3 =
     49* Bugfix
Note: See TracChangeset for help on using the changeset viewer.