Coming Soon Page & Maintenance Mode by SeedProd - Version 5.1.1

Version Description

  • Tweak - Escape script output on certain fields: reported by security researcher (Jinson Varghese Behanan) from the company (Astra Security)
Download this release

Release Info

Developer seedprod
Plugin Icon 128x128 Coming Soon Page & Maintenance Mode by SeedProd
Version 5.1.1
Comparing to
See all releases

Code changes from version 5.1.0 to 5.1.1

Files changed (3) hide show
  1. README.txt +7 -1
  2. coming-soon.php +2 -2
  3. themes/default/functions.php +1 -1
README.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: http://www.seedprod.com
4
  Tags: maintenance mode, coming soon page, coming soon, under construction, landing page, launch, maintenance, construction, offline, unavailable, under construction page, launch page
5
  Requires at least: 3.5.1
6
  Tested up to: 5.2
7
- Stable tag: 5.1.0
8
  Text Domain: coming-soon
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
@@ -115,6 +115,9 @@ This is always a caching issue. Go to the caching plugin's setting page and clea
115
  4. Design Page
116
 
117
  == Changelog ==
 
 
 
118
  = 5.1.0 =
119
  * Added - Suggest a Feature
120
  * Added - Quicklinks to Support
@@ -236,6 +239,9 @@ This is always a caching issue. Go to the caching plugin's setting page and clea
236
  * Initial Commit
237
 
238
  == Upgrade Notice ==
 
 
 
239
  = 5.1.0 =
240
  * Added - Suggest a Feature
241
  * Added - Quicklinks to Support
4
  Tags: maintenance mode, coming soon page, coming soon, under construction, landing page, launch, maintenance, construction, offline, unavailable, under construction page, launch page
5
  Requires at least: 3.5.1
6
  Tested up to: 5.2
7
+ Stable tag: 5.1.1
8
  Text Domain: coming-soon
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
115
  4. Design Page
116
 
117
  == Changelog ==
118
+ = 5.1.1 =
119
+ * Tweak - Escape script output on certain fields: reported by security researcher (Jinson Varghese Behanan) from the company (Astra Security)
120
+
121
  = 5.1.0 =
122
  * Added - Suggest a Feature
123
  * Added - Quicklinks to Support
239
  * Initial Commit
240
 
241
  == Upgrade Notice ==
242
+ = 5.1.1 =
243
+ * Tweak - Escape script output on certain fields: reported by security researcher (Jinson Varghese Behanan) from the company (Astra Security)
244
+
245
  = 5.1.0 =
246
  * Added - Suggest a Feature
247
  * Added - Quicklinks to Support
coming-soon.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Coming Soon Page, Under Construction & Maintenance Mode by SeedProd
4
  * Plugin URI: http://www.seedprod.com
5
  * Description: The #1 Coming Soon Page, Under Construction & Maintenance Mode plugin for WordPress.
6
- * Version: 5.1.0
7
  * Author: SeedProd
8
  * Author URI: http://www.seedprod.com
9
  * Text Domain: coming-soon
@@ -20,7 +20,7 @@ define('SEED_CSP4_SHORTNAME', 'seed_csp4'); // Used to reference namespace funct
20
  define('SEED_CSP4_SLUG', 'coming-soon/coming-soon.php'); // Used for settings link.
21
  define('SEED_CSP4_TEXTDOMAIN', 'coming-soon'); // Your textdomain
22
  define('SEED_CSP4_PLUGIN_NAME', __('Coming Soon Page & Maintenance Mode by SeedProd', 'coming-soon')); // Plugin Name shows up on the admin settings screen.
23
- define('SEED_CSP4_VERSION', '5.1.0'); // Plugin Version Number. Recommend you use Semantic Versioning http://semver.org/
24
  define('SEED_CSP4_PLUGIN_PATH', plugin_dir_path(__FILE__)); // Example output: /Applications/MAMP/htdocs/wordpress/wp-content/plugins/seed_csp4/
25
  define('SEED_CSP4_PLUGIN_URL', plugin_dir_url(__FILE__)); // Example output: http://localhost:8888/wordpress/wp-content/plugins/seed_csp4/
26
  define('SEED_CSP4_TABLENAME', 'seed_csp4_subscribers');
3
  * Plugin Name: Coming Soon Page, Under Construction & Maintenance Mode by SeedProd
4
  * Plugin URI: http://www.seedprod.com
5
  * Description: The #1 Coming Soon Page, Under Construction & Maintenance Mode plugin for WordPress.
6
+ * Version: 5.1.1
7
  * Author: SeedProd
8
  * Author URI: http://www.seedprod.com
9
  * Text Domain: coming-soon
20
  define('SEED_CSP4_SLUG', 'coming-soon/coming-soon.php'); // Used for settings link.
21
  define('SEED_CSP4_TEXTDOMAIN', 'coming-soon'); // Your textdomain
22
  define('SEED_CSP4_PLUGIN_NAME', __('Coming Soon Page & Maintenance Mode by SeedProd', 'coming-soon')); // Plugin Name shows up on the admin settings screen.
23
+ define('SEED_CSP4_VERSION', '5.1.1'); // Plugin Version Number. Recommend you use Semantic Versioning http://semver.org/
24
  define('SEED_CSP4_PLUGIN_PATH', plugin_dir_path(__FILE__)); // Example output: /Applications/MAMP/htdocs/wordpress/wp-content/plugins/seed_csp4/
25
  define('SEED_CSP4_PLUGIN_URL', plugin_dir_url(__FILE__)); // Example output: http://localhost:8888/wordpress/wp-content/plugins/seed_csp4/
26
  define('SEED_CSP4_TABLENAME', 'seed_csp4_subscribers');
themes/default/functions.php CHANGED
@@ -283,7 +283,7 @@ function seed_csp4_headline() {
283
  $output = '';
284
 
285
  if ( !empty( $headline ) ) {
286
- $output .= '<h1 id="seed-csp4-headline">'.$headline.'</h1>';
287
  }
288
 
289
  return $output;
283
  $output = '';
284
 
285
  if ( !empty( $headline ) ) {
286
+ $output .= '<h1 id="seed-csp4-headline">'.str_replace("script","",$headline).'</h1>';
287
  }
288
 
289
  return $output;