Version Description
- Removed call to get_magic_quotes_gpc()
- Upped minimum PHP version to 5.4.0
Download this release
Release Info
Developer | bobriley |
Plugin | EZP Coming Soon Page |
Version | 1.0.7.2 |
Comparing to | |
See all releases |
Code changes from version 1.0.7.1 to 1.0.7.2
- classes/class-ezp-cs-constants.php +1 -1
- easy-pie-coming-soon.php +1 -1
- readme.txt +10 -2
- web-service/class-rest-base.php +0 -3
classes/class-ezp-cs-constants.php
CHANGED
@@ -32,7 +32,7 @@ if (!class_exists('EZP_CS_Constants')) {
|
|
32 |
const COMPOUND_OPTION_NAME = 'easy-pie-cs-options';
|
33 |
const MAIN_PAGE_KEY = 'easy-pie-cs-main-page';
|
34 |
const PLUGIN_SLUG = 'easy-pie-coming-soon';
|
35 |
-
const PLUGIN_VERSION = "1.0.7.
|
36 |
|
37 |
|
38 |
|
32 |
const COMPOUND_OPTION_NAME = 'easy-pie-cs-options';
|
33 |
const MAIN_PAGE_KEY = 'easy-pie-cs-main-page';
|
34 |
const PLUGIN_SLUG = 'easy-pie-coming-soon';
|
35 |
+
const PLUGIN_VERSION = "1.0.7.2"; // RSR Version
|
36 |
|
37 |
|
38 |
|
easy-pie-coming-soon.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: EZP Coming Soon Page
|
4 |
Plugin URI: https://snapcreek.com/ezp-coming-soon/
|
5 |
Description: Let people know that your site is 'coming soon'. Visitors can submit their email addresses for future notification.
|
6 |
-
Version: 1.0.7.
|
7 |
Author: Snap Creek Software
|
8 |
Author URI: https://snapcreek.com/ezp-coming-soon/
|
9 |
Text Domain: easy-pie-coming-soon
|
3 |
Plugin Name: EZP Coming Soon Page
|
4 |
Plugin URI: https://snapcreek.com/ezp-coming-soon/
|
5 |
Description: Let people know that your site is 'coming soon'. Visitors can submit their email addresses for future notification.
|
6 |
+
Version: 1.0.7.2
|
7 |
Author: Snap Creek Software
|
8 |
Author URI: https://snapcreek.com/ezp-coming-soon/
|
9 |
Text Domain: easy-pie-coming-soon
|
readme.txt
CHANGED
@@ -4,8 +4,8 @@ Donate link: http://easypiewp.com/donate/
|
|
4 |
Tags: admin, admin maintenance, maintenance page, coming soon, coming soon page, squeeze page, landing page, launch, launch page, maintenance, maintenance mode, offline, unavailable, under construction, underconstruction, wordpress coming soon, wordpress maintenance mode, wordpress under construction, easypie, easy pie
|
5 |
Requires at least: 3.5
|
6 |
Tested up to: 5.7.2
|
7 |
-
Requires PHP: 5.
|
8 |
-
Stable tag: 1.0.7.
|
9 |
License: GPLv3
|
10 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
11 |
|
@@ -96,6 +96,10 @@ For the FAQ on EZP Coming Soon Page please visit the [Snap Creek Website](https:
|
|
96 |
|
97 |
== Changelog ==
|
98 |
|
|
|
|
|
|
|
|
|
99 |
= 1.0.7.1 =
|
100 |
* Removed calls to deprecated function screen_icon()
|
101 |
|
@@ -169,6 +173,10 @@ For the FAQ on EZP Coming Soon Page please visit the [Snap Creek Website](https:
|
|
169 |
|
170 |
== Upgrade Notice ==
|
171 |
|
|
|
|
|
|
|
|
|
172 |
= 1.0.7.1 =
|
173 |
* Removed calls to deprecated function screen_icon()
|
174 |
|
4 |
Tags: admin, admin maintenance, maintenance page, coming soon, coming soon page, squeeze page, landing page, launch, launch page, maintenance, maintenance mode, offline, unavailable, under construction, underconstruction, wordpress coming soon, wordpress maintenance mode, wordpress under construction, easypie, easy pie
|
5 |
Requires at least: 3.5
|
6 |
Tested up to: 5.7.2
|
7 |
+
Requires PHP: 5.4.0
|
8 |
+
Stable tag: 1.0.7.2
|
9 |
License: GPLv3
|
10 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
11 |
|
96 |
|
97 |
== Changelog ==
|
98 |
|
99 |
+
= 1.0.7.2 =
|
100 |
+
* Removed call to get_magic_quotes_gpc()
|
101 |
+
* Upped minimum PHP version to 5.4.0
|
102 |
+
|
103 |
= 1.0.7.1 =
|
104 |
* Removed calls to deprecated function screen_icon()
|
105 |
|
173 |
|
174 |
== Upgrade Notice ==
|
175 |
|
176 |
+
= 1.0.7.2 =
|
177 |
+
* Removed call to get_magic_quotes_gpc()
|
178 |
+
* Upped minimum PHP version to 5.4.0
|
179 |
+
|
180 |
= 1.0.7.1 =
|
181 |
* Removed calls to deprecated function screen_icon()
|
182 |
|
web-service/class-rest-base.php
CHANGED
@@ -103,9 +103,6 @@ class Rest_Base {
|
|
103 |
$clean_input[$k] = $this->cleanInputs($v);
|
104 |
}
|
105 |
} else {
|
106 |
-
if (get_magic_quotes_gpc()) {
|
107 |
-
$data = trim(stripslashes($data));
|
108 |
-
}
|
109 |
$data = strip_tags($data);
|
110 |
$clean_input = trim($data);
|
111 |
}
|
103 |
$clean_input[$k] = $this->cleanInputs($v);
|
104 |
}
|
105 |
} else {
|
|
|
|
|
|
|
106 |
$data = strip_tags($data);
|
107 |
$clean_input = trim($data);
|
108 |
}
|