Changeset 2862189
- Timestamp:
- 02/08/2023 04:20:06 PM (3 years ago)
- Location:
- cf7-reply-manager
- Files:
-
- 5 edited
- 13 copied
-
tags/1.2.1 (copied) (copied from cf7-reply-manager/trunk)
-
tags/1.2.1/admin/class-cf7-reply-manager-admin.php (copied) (copied from cf7-reply-manager/trunk/admin/class-cf7-reply-manager-admin.php)
-
tags/1.2.1/admin/css/datatables.min.css (copied) (copied from cf7-reply-manager/trunk/admin/css/datatables.min.css)
-
tags/1.2.1/admin/css/style.css (copied) (copied from cf7-reply-manager/trunk/admin/css/style.css) (1 diff)
-
tags/1.2.1/admin/js/cf7_rm.js (copied) (copied from cf7-reply-manager/trunk/admin/js/cf7_rm.js) (2 diffs)
-
tags/1.2.1/admin/js/datatables.min.js (copied) (copied from cf7-reply-manager/trunk/admin/js/datatables.min.js)
-
tags/1.2.1/admin/partials/form-list.php (copied) (copied from cf7-reply-manager/trunk/admin/partials/form-list.php)
-
tags/1.2.1/admin/partials/replies.php (copied) (copied from cf7-reply-manager/trunk/admin/partials/replies.php)
-
tags/1.2.1/contact-form-7-reply-manager.php (copied) (copied from cf7-reply-manager/trunk/contact-form-7-reply-manager.php) (2 diffs)
-
tags/1.2.1/includes/class-cf7-reply-manager-activator.php (copied) (copied from cf7-reply-manager/trunk/includes/class-cf7-reply-manager-activator.php)
-
tags/1.2.1/includes/class-cf7-reply-manager-deactivator.php (copied) (copied from cf7-reply-manager/trunk/includes/class-cf7-reply-manager-deactivator.php)
-
tags/1.2.1/includes/class-cf7-reply-manager.php (copied) (copied from cf7-reply-manager/trunk/includes/class-cf7-reply-manager.php) (1 diff)
-
tags/1.2.1/readme.txt (copied) (copied from cf7-reply-manager/trunk/readme.txt) (1 diff)
-
trunk/admin/css/style.css (modified) (1 diff)
-
trunk/admin/js/cf7_rm.js (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.1/admin/css/style.css
r2861665 r2862189 103 103 #date-filter{ 104 104 margin-bottom: -30px; 105 z-index: 999; 106 position: relative; 107 width: 500px; 105 108 } 106 109 -
cf7-reply-manager/tags/1.2.1/admin/js/cf7_rm.js
r2861665 r2862189 16 16 var min = new Date( $('#min').val() ); 17 17 var max = new Date( $('#max').val() + ' 23:59:59' ); 18 var date = new Date( data[ 6] );18 var date = new Date( data[5] ); 19 19 20 20 if ( … … 30 30 ); 31 31 dataTable = requestTable.DataTable({ 32 "columnDefs": [32 columnDefs: [ 33 33 { 34 "orderable": false,35 "targets": 0,34 orderable: false, 35 targets: 0, 36 36 } 37 37 ], 38 pageLength: 25, 39 lengthMenu: [25, 50, 100, 250, 500], 38 40 buttons: [ 39 41 { -
cf7-reply-manager/tags/1.2.1/contact-form-7-reply-manager.php
r2861665 r2862189 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. 010 * Version: 1.2.1 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. 0';30 $cf7rm_current_version = '1.2.1'; 31 31 32 32 /** -
cf7-reply-manager/tags/1.2.1/includes/class-cf7-reply-manager.php
r2861665 r2862189 67 67 68 68 $this->plugin_name = 'cf7_reply_manager'; 69 $this->version = '1.2. 0';69 $this->version = '1.2.1'; 70 70 71 71 // $this->load_dependencies(); -
cf7-reply-manager/tags/1.2.1/readme.txt
r2861665 r2862189 43 43 * CSV Export Ability 44 44 * Improved security 45 = 1.2.1 = 46 * Increased entries size -
cf7-reply-manager/trunk/admin/css/style.css
r2861665 r2862189 103 103 #date-filter{ 104 104 margin-bottom: -30px; 105 z-index: 999; 106 position: relative; 107 width: 500px; 105 108 } 106 109 -
cf7-reply-manager/trunk/admin/js/cf7_rm.js
r2861665 r2862189 16 16 var min = new Date( $('#min').val() ); 17 17 var max = new Date( $('#max').val() + ' 23:59:59' ); 18 var date = new Date( data[ 6] );18 var date = new Date( data[5] ); 19 19 20 20 if ( … … 30 30 ); 31 31 dataTable = requestTable.DataTable({ 32 "columnDefs": [32 columnDefs: [ 33 33 { 34 "orderable": false,35 "targets": 0,34 orderable: false, 35 targets: 0, 36 36 } 37 37 ], 38 pageLength: 25, 39 lengthMenu: [25, 50, 100, 250, 500], 38 40 buttons: [ 39 41 { -
cf7-reply-manager/trunk/contact-form-7-reply-manager.php
r2861665 r2862189 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. 010 * Version: 1.2.1 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. 0';30 $cf7rm_current_version = '1.2.1'; 31 31 32 32 /** -
cf7-reply-manager/trunk/includes/class-cf7-reply-manager.php
r2861665 r2862189 67 67 68 68 $this->plugin_name = 'cf7_reply_manager'; 69 $this->version = '1.2. 0';69 $this->version = '1.2.1'; 70 70 71 71 // $this->load_dependencies(); -
cf7-reply-manager/trunk/readme.txt
r2861665 r2862189 43 43 * CSV Export Ability 44 44 * Improved security 45 = 1.2.1 = 46 * Increased entries size
Note: See TracChangeset
for help on using the changeset viewer.