Version Description
- Hotfix: moved is_user_logged_in method control after the template_redirect hook.
Download this release
Release Info
Developer | Facens |
Plugin | iubenda Cookie Solution for GDPR |
Version | 1.10.20 |
Comparing to | |
See all releases |
Code changes from version 1.10.19 to 1.10.20
- iubenda_cookie_solution.php +11 -2
- readme.txt +2 -0
iubenda_cookie_solution.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* Plugin URI: https://www.iubenda.com
|
6 |
* Description: Iubenda Cookie Solution permette di gestire tutti gli aspetti della cookie law su WP.
|
7 |
* Author: iubenda
|
8 |
-
* Version: 1.10.
|
9 |
* Text Domain: iubenda-cookie-wp-plugin
|
10 |
* Author URI: https://www.iubenda.com
|
11 |
*/
|
@@ -21,6 +21,8 @@
|
|
21 |
{
|
22 |
return;
|
23 |
}
|
|
|
|
|
24 |
|
25 |
/*
|
26 |
Methods
|
@@ -206,7 +208,7 @@
|
|
206 |
|
207 |
function __iubenda_setup_output()
|
208 |
{
|
209 |
-
if(
|
210 |
|
211 |
return;
|
212 |
|
@@ -227,6 +229,13 @@
|
|
227 |
|
228 |
function __iubenda_final_output($output)
|
229 |
{
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
230 |
$page = new Page($output);
|
231 |
$page->parse();
|
232 |
|
5 |
* Plugin URI: https://www.iubenda.com
|
6 |
* Description: Iubenda Cookie Solution permette di gestire tutti gli aspetti della cookie law su WP.
|
7 |
* Author: iubenda
|
8 |
+
* Version: 1.10.20
|
9 |
* Text Domain: iubenda-cookie-wp-plugin
|
10 |
* Author URI: https://www.iubenda.com
|
11 |
*/
|
21 |
{
|
22 |
return;
|
23 |
}
|
24 |
+
|
25 |
+
// ...
|
26 |
|
27 |
/*
|
28 |
Methods
|
208 |
|
209 |
function __iubenda_setup_output()
|
210 |
{
|
211 |
+
if($_POST || defined("IUBENDA_NO_HTML_TYPE")) {
|
212 |
|
213 |
return;
|
214 |
|
229 |
|
230 |
function __iubenda_final_output($output)
|
231 |
{
|
232 |
+
if(is_user_logged_in())
|
233 |
+
{
|
234 |
+
return $output;
|
235 |
+
}
|
236 |
+
|
237 |
+
/**/
|
238 |
+
|
239 |
$page = new Page($output);
|
240 |
$page->parse();
|
241 |
|
readme.txt
CHANGED
@@ -127,6 +127,8 @@ Il plugin Wordpress di iubenda permette di semplificare l’adeguamento del prop
|
|
127 |
|
128 |
== Changelog ==
|
129 |
|
|
|
|
|
130 |
|
131 |
= 1.10.19 =
|
132 |
* Fixed a series of conflicts with AJAX requests, which were conflicting with Contact Form 7 and other plugins
|
127 |
|
128 |
== Changelog ==
|
129 |
|
130 |
+
= 1.10.20 =
|
131 |
+
* Hotfix: moved “is_user_logged_in” method control after the “template_redirect” hook.
|
132 |
|
133 |
= 1.10.19 =
|
134 |
* Fixed a series of conflicts with AJAX requests, which were conflicting with Contact Form 7 and other plugins
|