Version Description
- Removing two admin notices related to legacy templates
- Variation notes migrated to custom metabox
- Removing 'Insert default content' button from landing page and modifying metabox order
- Anti XSS security improvement
Download this release
Release Info
Developer | adbox |
Plugin | WordPress Landing Pages |
Version | 2.4.9 |
Comparing to | |
See all releases |
Code changes from version 2.4.8 to 2.4.9
- landing-pages.php +2 -2
- readme.txt +3 -2
- shared/shortcodes/preview.php +1 -1
landing-pages.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Landing Pages
|
4 |
Plugin URI: http://www.inboundnow.com/landing-pages/
|
5 |
Description: Landing page template framework with variant testing and lead capturing through cooperation with Inbound Now's Leads plugin. This is the stand alone version served through WordPress.org.
|
6 |
-
Version: 2.4.
|
7 |
Author: Inbound Now
|
8 |
Author URI: http://www.inboundnow.com/
|
9 |
|
@@ -37,7 +37,7 @@ if (!class_exists('Inbound_Landing_Pages_Plugin')) {
|
|
37 |
*/
|
38 |
private static function load_constants() {
|
39 |
|
40 |
-
define('LANDINGPAGES_CURRENT_VERSION', '2.4.
|
41 |
define('LANDINGPAGES_URLPATH', plugins_url( '/' , __FILE__ ) );
|
42 |
define('LANDINGPAGES_PATH', WP_PLUGIN_DIR.'/'.plugin_basename( dirname(__FILE__) ).'/' );
|
43 |
define('LANDINGPAGES_PLUGIN_SLUG', 'landing-pages' );
|
3 |
Plugin Name: Landing Pages
|
4 |
Plugin URI: http://www.inboundnow.com/landing-pages/
|
5 |
Description: Landing page template framework with variant testing and lead capturing through cooperation with Inbound Now's Leads plugin. This is the stand alone version served through WordPress.org.
|
6 |
+
Version: 2.4.9
|
7 |
Author: Inbound Now
|
8 |
Author URI: http://www.inboundnow.com/
|
9 |
|
37 |
*/
|
38 |
private static function load_constants() {
|
39 |
|
40 |
+
define('LANDINGPAGES_CURRENT_VERSION', '2.4.9' );
|
41 |
define('LANDINGPAGES_URLPATH', plugins_url( '/' , __FILE__ ) );
|
42 |
define('LANDINGPAGES_PATH', WP_PLUGIN_DIR.'/'.plugin_basename( dirname(__FILE__) ).'/' );
|
43 |
define('LANDINGPAGES_PLUGIN_SLUG', 'landing-pages' );
|
readme.txt
CHANGED
@@ -7,7 +7,7 @@ License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
|
7 |
Tags: landing pages, inbound marketing, conversion pages, split testing, a b test, a b testing, a/b test, a/b testing, coming soon page, email list, landing page, list building, maintenance page, squeeze page, inbound now, landing-pages, splash pages, cpa, click tracking, goal tracking, analytics, free landing page templates
|
8 |
Requires at least: 3.8
|
9 |
Tested up to: 4.7.4
|
10 |
-
Stable Tag: 2.4.
|
11 |
|
12 |
Create landing pages for your WordPress site. Monitor and improve conversion rates, run A/B split tests, customize your own templates and more.
|
13 |
|
@@ -84,10 +84,11 @@ We also offer a guide for using <a href="https://github.com/inboundnow/landing-p
|
|
84 |
|
85 |
== Changelog ==
|
86 |
|
87 |
-
= 2.4.
|
88 |
* Removing two admin notices related to legacy templates
|
89 |
* Variation notes migrated to custom metabox
|
90 |
* Removing 'Insert default content' button from landing page and modifying metabox order
|
|
|
91 |
|
92 |
= 2.4.7 =
|
93 |
* Adding revision support to Landing Pages
|
7 |
Tags: landing pages, inbound marketing, conversion pages, split testing, a b test, a b testing, a/b test, a/b testing, coming soon page, email list, landing page, list building, maintenance page, squeeze page, inbound now, landing-pages, splash pages, cpa, click tracking, goal tracking, analytics, free landing page templates
|
8 |
Requires at least: 3.8
|
9 |
Tested up to: 4.7.4
|
10 |
+
Stable Tag: 2.4.9
|
11 |
|
12 |
Create landing pages for your WordPress site. Monitor and improve conversion rates, run A/B split tests, customize your own templates and more.
|
13 |
|
84 |
|
85 |
== Changelog ==
|
86 |
|
87 |
+
= 2.4.9 =
|
88 |
* Removing two admin notices related to legacy templates
|
89 |
* Variation notes migrated to custom metabox
|
90 |
* Removing 'Insert default content' button from landing page and modifying metabox order
|
91 |
+
* Anti XSS security improvement
|
92 |
|
93 |
= 2.4.7 =
|
94 |
* Adding revision support to Landing Pages
|
shared/shortcodes/preview.php
CHANGED
@@ -13,7 +13,7 @@ if (defined('ABSPATH')) {
|
|
13 |
|
14 |
/* Get Shortcodes
|
15 |
* --------------------------------------------------------------------------- */
|
16 |
-
$shortcode = html_entity_decode( trim( $_GET['sc'] ) );
|
17 |
|
18 |
// SET CORRECT FILE PATHS FOR SCRIPTS
|
19 |
if ( defined( 'WPL_URL' )) {
|
13 |
|
14 |
/* Get Shortcodes
|
15 |
* --------------------------------------------------------------------------- */
|
16 |
+
$shortcode = sanitize_text_field(html_entity_decode( trim( $_GET['sc'] ) ));
|
17 |
|
18 |
// SET CORRECT FILE PATHS FOR SCRIPTS
|
19 |
if ( defined( 'WPL_URL' )) {
|