Version Description
Download this release
Release Info
Developer | wpautoterms |
Plugin | Auto Terms of Service and Privacy Policy |
Version | 2.2.0 |
Comparing to | |
See all releases |
Code changes from version 2.1.9 to 2.2.0
- README.txt +5 -1
- auto-terms-of-service-privacy-policy.php +1 -1
- includes/frontend.php +0 -1
README.txt
CHANGED
@@ -4,7 +4,7 @@ Tags: gdpr, privacy policy, terms and conditions, terms of service, terms of use
|
|
4 |
Requires at least: 4.2
|
5 |
Tested up to: 4.9.7
|
6 |
Requires PHP: 5.3
|
7 |
-
Stable tag: 2.
|
8 |
License: GPL version 3 or any later version
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
@@ -113,6 +113,10 @@ Installing the plugin is easy. Just follow these steps:
|
|
113 |
|
114 |
== Changelog ==
|
115 |
|
|
|
|
|
|
|
|
|
116 |
= Version 2.1.9 =
|
117 |
* Sep 23, 2018
|
118 |
* Add z-index values to prevent theme issues
|
4 |
Requires at least: 4.2
|
5 |
Tested up to: 4.9.7
|
6 |
Requires PHP: 5.3
|
7 |
+
Stable tag: 2.2.0
|
8 |
License: GPL version 3 or any later version
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
113 |
|
114 |
== Changelog ==
|
115 |
|
116 |
+
= Version 2.2.0 =
|
117 |
+
* Oct 1, 2018
|
118 |
+
* Fix body oepning tag not found error
|
119 |
+
|
120 |
= Version 2.1.9 =
|
121 |
* Sep 23, 2018
|
122 |
* Add z-index values to prevent theme issues
|
auto-terms-of-service-privacy-policy.php
CHANGED
@@ -5,7 +5,7 @@ Plugin URI: https://wpautoterms.com
|
|
5 |
Description: Create Privacy Policy (Simple or GDPR), Terms & Conditions, Disclaimers and more. Compliance Kits to help you be compliant with the law.
|
6 |
Author: WP AutoTerms
|
7 |
Author URI: https://wpautoterms.com
|
8 |
-
Version: 2.
|
9 |
License: GPLv2 or later
|
10 |
Text Domain: wpautoterms
|
11 |
Domain Path: /languages
|
5 |
Description: Create Privacy Policy (Simple or GDPR), Terms & Conditions, Disclaimers and more. Compliance Kits to help you be compliant with the law.
|
6 |
Author: WP AutoTerms
|
7 |
Author URI: https://wpautoterms.com
|
8 |
+
Version: 2.2.0
|
9 |
License: GPLv2 or later
|
10 |
Text Domain: wpautoterms
|
11 |
Domain Path: /languages
|
includes/frontend.php
CHANGED
@@ -67,7 +67,6 @@ abstract class Frontend {
|
|
67 |
// NOTE: HTML is not well formed, we can only detect a closing body
|
68 |
$ret .= $buf;
|
69 |
$ret .= static::$_body_top;
|
70 |
-
error_log( 'WPAutoTerms: Body opening tag not found' );
|
71 |
} else {
|
72 |
$ret .= $m[1];
|
73 |
$ret .= static::$_body_top;
|
67 |
// NOTE: HTML is not well formed, we can only detect a closing body
|
68 |
$ret .= $buf;
|
69 |
$ret .= static::$_body_top;
|
|
|
70 |
} else {
|
71 |
$ret .= $m[1];
|
72 |
$ret .= static::$_body_top;
|