Version Description
- Fixed an encoding issue
Download this release
Release Info
Developer | Facens |
Plugin | iubenda Cookie Solution for GDPR |
Version | 1.10.2 |
Comparing to | |
See all releases |
Code changes from version 1.10.1 to 1.10.2
- iubenda_cookie_solution.php +3 -3
- readme.txt +3 -0
iubenda_cookie_solution.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
Plugin URI: https://www.iubenda.com
|
5 |
Description: Iubenda Cookie Solution permette di gestire tutti gli aspetti della cookie law su WP.
|
6 |
Author: iubenda
|
7 |
-
Version: 1.10.
|
8 |
Text Domain: iubenda-cookie-wp-plugin
|
9 |
Author URI: https://www.iubenda.com
|
10 |
*/
|
@@ -74,7 +74,7 @@
|
|
74 |
$output = $page->get_converted_page();
|
75 |
|
76 |
if(get_option("iub_code")) {
|
77 |
-
update_option("iubenda-code-default", get_option("iub_code"));
|
78 |
update_option("iub_code", false);
|
79 |
}
|
80 |
|
@@ -157,7 +157,7 @@ if('callback' in _iub.csConfiguration) {
|
|
157 |
function __iub_admin_load(){
|
158 |
|
159 |
if(get_option("iub_code")) {
|
160 |
-
update_option("iubenda-code-default", get_option("iub_code"));
|
161 |
update_option("iub_code", false);
|
162 |
}
|
163 |
|
4 |
Plugin URI: https://www.iubenda.com
|
5 |
Description: Iubenda Cookie Solution permette di gestire tutti gli aspetti della cookie law su WP.
|
6 |
Author: iubenda
|
7 |
+
Version: 1.10.2
|
8 |
Text Domain: iubenda-cookie-wp-plugin
|
9 |
Author URI: https://www.iubenda.com
|
10 |
*/
|
74 |
$output = $page->get_converted_page();
|
75 |
|
76 |
if(get_option("iub_code")) {
|
77 |
+
update_option("iubenda-code-default", html_entity_decode(stripslashes(get_option("iub_code"))));
|
78 |
update_option("iub_code", false);
|
79 |
}
|
80 |
|
157 |
function __iub_admin_load(){
|
158 |
|
159 |
if(get_option("iub_code")) {
|
160 |
+
update_option("iubenda-code-default", html_entity_decode(stripslashes(get_option("iub_code"))));
|
161 |
update_option("iub_code", false);
|
162 |
}
|
163 |
|
readme.txt
CHANGED
@@ -122,6 +122,9 @@ Il plugin Wordpress di iubenda permette di semplificare l’adeguamento del prop
|
|
122 |
|
123 |
== Changelog ==
|
124 |
|
|
|
|
|
|
|
125 |
= 1.10.1 =
|
126 |
* Fixed a bug that forced users to re-insert their cookie law code
|
127 |
|
122 |
|
123 |
== Changelog ==
|
124 |
|
125 |
+
= 1.10.2 =
|
126 |
+
* Fixed an encoding issue
|
127 |
+
|
128 |
= 1.10.1 =
|
129 |
* Fixed a bug that forced users to re-insert their cookie law code
|
130 |
|