Coming Soon Page & Maintenance Mode by SeedProd - Version 5.0.13

Version Description

  • Fixed a PHP 7 compatibility warning
Download this release

Release Info

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

Code changes from version 5.0.12 to 5.0.13

Files changed (3) hide show
  1. README.txt +7 -1
  2. coming-soon.php +2 -2
  3. framework/framework.php +2 -2
README.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: http://www.seedprod.com
4
  Tags: maintenance mode, coming soon page, coming soon, under construction, launch page, launch, maintenance, construction, offline, unavailable, under construction page, landing page
5
  Requires at least: 3.5.1
6
  Tested up to: 4.8.1
7
- Stable tag: 5.0.12
8
  Text Domain: coming-soon
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
@@ -113,6 +113,9 @@ This is always a caching issue. Go to the caching plugin's setting page and clea
113
  4. Design Page
114
 
115
  == Changelog ==
 
 
 
116
  = 5.0.12 =
117
  * Added Review Request
118
 
@@ -188,6 +191,9 @@ This is always a caching issue. Go to the caching plugin's setting page and clea
188
  * Initial Commit
189
 
190
  == Upgrade Notice ==
 
 
 
191
  = 5.0.12 =
192
  * Added Review Request
193
 
4
  Tags: maintenance mode, coming soon page, coming soon, under construction, launch page, launch, maintenance, construction, offline, unavailable, under construction page, landing page
5
  Requires at least: 3.5.1
6
  Tested up to: 4.8.1
7
+ Stable tag: 5.0.13
8
  Text Domain: coming-soon
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
113
  4. Design Page
114
 
115
  == Changelog ==
116
+ = 5.0.13 =
117
+ * Fixed a PHP 7 compatibility warning
118
+
119
  = 5.0.12 =
120
  * Added Review Request
121
 
191
  * Initial Commit
192
 
193
  == Upgrade Notice ==
194
+ = 5.0.13 =
195
+ * Fixed a PHP 7 compatibility warning
196
+
197
  = 5.0.12 =
198
  * Added Review Request
199
 
coming-soon.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Coming Soon Page & 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.0.12
7
  * Author: SeedProd
8
  * Author URI: http://www.seedprod.com
9
  * Text Domain: coming-soon
@@ -21,7 +21,7 @@ define( 'SEED_CSP4_SHORTNAME', 'seed_csp4' ); // Used to reference namespace fun
21
  define( 'SEED_CSP4_SLUG', 'coming-soon/coming-soon.php' ); // Used for settings link.
22
  define( 'SEED_CSP4_TEXTDOMAIN', 'coming-soon' ); // Your textdomain
23
  define( 'SEED_CSP4_PLUGIN_NAME', __( 'Coming Soon Page & Maintenance Mode by SeedProd', 'coming-soon' ) ); // Plugin Name shows up on the admin settings screen.
24
- define( 'SEED_CSP4_VERSION', '5.0.12'); // Plugin Version Number. Recommend you use Semantic Versioning http://semver.org/
25
  define( 'SEED_CSP4_PLUGIN_PATH', plugin_dir_path( __FILE__ ) ); // Example output: /Applications/MAMP/htdocs/wordpress/wp-content/plugins/seed_csp4/
26
  define( 'SEED_CSP4_PLUGIN_URL', plugin_dir_url( __FILE__ ) ); // Example output: http://localhost:8888/wordpress/wp-content/plugins/seed_csp4/
27
  define( 'SEED_CSP4_TABLENAME', 'seed_csp4_subscribers' );
3
  * Plugin Name: Coming Soon Page & 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.0.13
7
  * Author: SeedProd
8
  * Author URI: http://www.seedprod.com
9
  * Text Domain: coming-soon
21
  define( 'SEED_CSP4_SLUG', 'coming-soon/coming-soon.php' ); // Used for settings link.
22
  define( 'SEED_CSP4_TEXTDOMAIN', 'coming-soon' ); // Your textdomain
23
  define( 'SEED_CSP4_PLUGIN_NAME', __( 'Coming Soon Page & Maintenance Mode by SeedProd', 'coming-soon' ) ); // Plugin Name shows up on the admin settings screen.
24
+ define( 'SEED_CSP4_VERSION', '5.0.13'); // Plugin Version Number. Recommend you use Semantic Versioning http://semver.org/
25
  define( 'SEED_CSP4_PLUGIN_PATH', plugin_dir_path( __FILE__ ) ); // Example output: /Applications/MAMP/htdocs/wordpress/wp-content/plugins/seed_csp4/
26
  define( 'SEED_CSP4_PLUGIN_URL', plugin_dir_url( __FILE__ ) ); // Example output: http://localhost:8888/wordpress/wp-content/plugins/seed_csp4/
27
  define( 'SEED_CSP4_TABLENAME', 'seed_csp4_subscribers' );
framework/framework.php CHANGED
@@ -468,7 +468,7 @@ class SEED_CSP4_ADMIN
468
  if ( empty( $v[ 'desc_callback' ] ) ) {
469
  $v[ 'desc_callback' ] = array(
470
  &$this,
471
- '__return_empty_string'
472
  );
473
  } else {
474
  $v[ 'desc_callback' ] = $v[ 'desc_callback' ];
@@ -596,7 +596,7 @@ class SEED_CSP4_ADMIN
596
  * @since 0.1.0
597
  * @return string Empty
598
  */
599
- function __return_empty_string( )
600
  {
601
  echo '';
602
  }
468
  if ( empty( $v[ 'desc_callback' ] ) ) {
469
  $v[ 'desc_callback' ] = array(
470
  &$this,
471
+ 'return_empty_string'
472
  );
473
  } else {
474
  $v[ 'desc_callback' ] = $v[ 'desc_callback' ];
596
  * @since 0.1.0
597
  * @return string Empty
598
  */
599
+ function return_empty_string( )
600
  {
601
  echo '';
602
  }