Cookie Law / GDPR Info - Version 1.6.5

Version Description

  • Filter added. (filter to edit audit table head)
Download this release

Release Info

Developer webtoffee
Plugin Icon Cookie Law / GDPR Info
Version 1.6.5
Comparing to
See all releases

Code changes from version 1.6.4 to 1.6.5

admin/cli-admin-page.php CHANGED
@@ -149,7 +149,7 @@ function cookielawinfo_print_admin_page() {
149
  <dl class="accordion">
150
 
151
 
152
- <dt class="ui-icon"><a href="#"><?php echo __('Settings','cookie-law-info'); ?></a></dt>
153
  <dd id="accordion_default">
154
  <h4><?php echo __('The Cookie Bar','cookie-law-info'); ?></h4>
155
  <table class="form-table">
149
  <dl class="accordion">
150
 
151
 
152
+ <dt><a href="#"><?php echo __('Settings','cookie-law-info'); ?></a></dt>
153
  <dd id="accordion_default">
154
  <h4><?php echo __('The Cookie Bar','cookie-law-info'); ?></h4>
155
  <table class="form-table">
cookie-law-info.php CHANGED
@@ -5,7 +5,7 @@ Plugin URI: https://wordpress.org/plugins/cookie-law-info/
5
  Description: A simple way to show your website complies with the EU Cookie Law / GDPR.
6
  Author: WebToffee
7
  Author URI: https://www.webtoffee.com/product/gdpr-cookie-consent/
8
- Version: 1.6.4
9
  License: GPLv3
10
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
11
  Text Domain: cookie-law-info
5
  Description: A simple way to show your website complies with the EU Cookie Law / GDPR.
6
  Author: WebToffee
7
  Author URI: https://www.webtoffee.com/product/gdpr-cookie-consent/
8
+ Version: 1.6.5
9
  License: GPLv3
10
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
11
  Text Domain: cookie-law-info
js/cookielawinfo.js CHANGED
@@ -1,5 +1,5 @@
1
  function cli_show_cookiebar(p) {
2
- /* plugin version 1.6.4 */
3
  var Cookie = {
4
  set: function(name,value,days) {
5
  if (days) {
1
  function cli_show_cookiebar(p) {
2
+ /* plugin version 1.6.5 */
3
  var Cookie = {
4
  set: function(name,value,days) {
5
  if (days) {
php/functions.php CHANGED
@@ -132,7 +132,7 @@ function cookielawinfo_inject_cli_script() {
132
  */
133
  function cookielawinfo_enqueue_frontend_scripts() {
134
  $the_options = cookielawinfo_get_admin_settings();
135
- $version = '1.6.4';
136
  if ( $the_options['is_on'] == true ) {
137
 
138
  /**
132
  */
133
  function cookielawinfo_enqueue_frontend_scripts() {
134
  $the_options = cookielawinfo_get_admin_settings();
135
+ $version = '1.6.5';
136
  if ( $the_options['is_on'] == true ) {
137
 
138
  /**
php/shortcodes.php CHANGED
@@ -92,7 +92,9 @@ function cookielawinfo_table_shortcode( $atts ) {
92
  $ret .= '</th>';
93
  $ret .= '<th class="cookielawinfo-column-4">';
94
  $ret .= __('Description','cookie-law-info');
95
- $ret .= '</th></tr>';
 
 
96
  $ret .= '</thead><tbody>';
97
 
98
  if ( !$posts ) {
92
  $ret .= '</th>';
93
  $ret .= '<th class="cookielawinfo-column-4">';
94
  $ret .= __('Description','cookie-law-info');
95
+ $ret .= '</th>';
96
+ $ret = apply_filters('cli_new_columns_to_audit_table',$ret,'');
97
+ $ret .= '</tr>';
98
  $ret .= '</thead><tbody>';
99
 
100
  if ( !$posts ) {
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.webtoffee.com/plugins/
4
  Tags: eu cookie law, GDPR, cookie law, cookie consent, eu privacy directive, privacy directive, cookies, privacy, compliance
5
  Requires at least: 3.3.1
6
  Tested up to: 4.9.8
7
- Stable tag: 1.6.4
8
  License: GPLv3
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
@@ -166,6 +166,10 @@ See http://cookielawinfo.com for more information on what is required.
166
 
167
  == Changelog ==
168
 
 
 
 
 
169
  = 1.6.4 =
170
 
171
  * Class change.
@@ -296,8 +300,7 @@ See http://cookielawinfo.com for more information on what is required.
296
 
297
  == Upgrade Notice ==
298
 
299
- = 1.6.4 =
300
 
301
- * Class change.
302
- * Bug fix.
303
 
4
  Tags: eu cookie law, GDPR, cookie law, cookie consent, eu privacy directive, privacy directive, cookies, privacy, compliance
5
  Requires at least: 3.3.1
6
  Tested up to: 4.9.8
7
+ Stable tag: 1.6.5
8
  License: GPLv3
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
166
 
167
  == Changelog ==
168
 
169
+ = 1.6.5 =
170
+
171
+ * Filter added. (filter to edit audit table head)
172
+
173
  = 1.6.4 =
174
 
175
  * Class change.
300
 
301
  == Upgrade Notice ==
302
 
303
+ = 1.6.5 =
304
 
305
+ * Filter added. (filter to edit audit table head)
 
306