Plugin Directory

Changeset 2862189


Ignore:
Timestamp:
02/08/2023 04:20:06 PM (3 years ago)
Author:
jadascript
Message:

v1.2.1

Location:
cf7-reply-manager
Files:
5 edited
13 copied

Legend:

Unmodified
Added
Removed
  • cf7-reply-manager/tags/1.2.1/admin/css/style.css

    r2861665 r2862189  
    103103#date-filter{
    104104   margin-bottom: -30px;
     105   z-index: 999;
     106   position: relative;
     107   width: 500px;
    105108}
    106109
  • cf7-reply-manager/tags/1.2.1/admin/js/cf7_rm.js

    r2861665 r2862189  
    1616            var min = new Date( $('#min').val() );
    1717            var max = new Date( $('#max').val() + ' 23:59:59' );
    18             var date = new Date( data[6] );
     18            var date = new Date( data[5] );
    1919
    2020            if (
     
    3030      );
    3131      dataTable = requestTable.DataTable({
    32          "columnDefs": [
     32         columnDefs: [
    3333            {
    34                "orderable": false,
    35                "targets": 0,
     34               orderable: false,
     35               targets: 0,
    3636            }
    3737         ],
     38         pageLength: 25,
     39         lengthMenu: [25, 50, 100, 250, 500],
    3840         buttons: [
    3941            {
  • cf7-reply-manager/tags/1.2.1/contact-form-7-reply-manager.php

    r2861665 r2862189  
    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.0
     10 * Version:           1.2.1
    1111 * Author:            Bigfive
    1212 * Author URI:        https://bigfive.it/
     
    2828
    2929global $cf7rm_current_version;
    30 $cf7rm_current_version = '1.2.0';
     30$cf7rm_current_version = '1.2.1';
    3131
    3232/**
  • cf7-reply-manager/tags/1.2.1/includes/class-cf7-reply-manager.php

    r2861665 r2862189  
    6767
    6868        $this->plugin_name = 'cf7_reply_manager';
    69         $this->version = '1.2.0';
     69        $this->version = '1.2.1';
    7070
    7171        // $this->load_dependencies();
  • cf7-reply-manager/tags/1.2.1/readme.txt

    r2861665 r2862189  
    4343* CSV Export Ability
    4444* Improved security
     45= 1.2.1 =
     46* Increased entries size
  • cf7-reply-manager/trunk/admin/css/style.css

    r2861665 r2862189  
    103103#date-filter{
    104104   margin-bottom: -30px;
     105   z-index: 999;
     106   position: relative;
     107   width: 500px;
    105108}
    106109
  • cf7-reply-manager/trunk/admin/js/cf7_rm.js

    r2861665 r2862189  
    1616            var min = new Date( $('#min').val() );
    1717            var max = new Date( $('#max').val() + ' 23:59:59' );
    18             var date = new Date( data[6] );
     18            var date = new Date( data[5] );
    1919
    2020            if (
     
    3030      );
    3131      dataTable = requestTable.DataTable({
    32          "columnDefs": [
     32         columnDefs: [
    3333            {
    34                "orderable": false,
    35                "targets": 0,
     34               orderable: false,
     35               targets: 0,
    3636            }
    3737         ],
     38         pageLength: 25,
     39         lengthMenu: [25, 50, 100, 250, 500],
    3840         buttons: [
    3941            {
  • cf7-reply-manager/trunk/contact-form-7-reply-manager.php

    r2861665 r2862189  
    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.0
     10 * Version:           1.2.1
    1111 * Author:            Bigfive
    1212 * Author URI:        https://bigfive.it/
     
    2828
    2929global $cf7rm_current_version;
    30 $cf7rm_current_version = '1.2.0';
     30$cf7rm_current_version = '1.2.1';
    3131
    3232/**
  • cf7-reply-manager/trunk/includes/class-cf7-reply-manager.php

    r2861665 r2862189  
    6767
    6868        $this->plugin_name = 'cf7_reply_manager';
    69         $this->version = '1.2.0';
     69        $this->version = '1.2.1';
    7070
    7171        // $this->load_dependencies();
  • cf7-reply-manager/trunk/readme.txt

    r2861665 r2862189  
    4343* CSV Export Ability
    4444* Improved security
     45= 1.2.1 =
     46* Increased entries size
Note: See TracChangeset for help on using the changeset viewer.