IgniteUp – Coming Soon and Maintenance Mode - Version 1.1.1

Version Description

  • Fix a bug occurred on network installations
Download this release

Release Info

Developer ceylonsystems
Plugin Icon 128x128 IgniteUp – Coming Soon and Maintenance Mode
Version 1.1.1
Comparing to
See all releases

Code changes from version 1.1 to 1.1.1

igniteup.php CHANGED
@@ -4,7 +4,7 @@
4
  Plugin Name: IgniteUp
5
  Plugin URI: http://plugins.ceylonsystems.com
6
  Description: IgniteUp is a powerful plugin which allows you to keep your site on launchpad till ignite-up and to build amazing coming soon pages.
7
- Version: 1.1
8
  Author: Ceylon Systems
9
  Author URI: http://ceylonsystems.com
10
  License: GPLv2 or later
4
  Plugin Name: IgniteUp
5
  Plugin URI: http://plugins.ceylonsystems.com
6
  Description: IgniteUp is a powerful plugin which allows you to keep your site on launchpad till ignite-up and to build amazing coming soon pages.
7
+ Version: 1.1.1
8
  Author: Ceylon Systems
9
  Author URI: http://ceylonsystems.com
10
  License: GPLv2 or later
includes/class-coming-soon-creator.php CHANGED
@@ -80,9 +80,12 @@ class CSComingSoonCreator {
80
 
81
  $skip_scr = array('colors', 'wp-admin', 'login', 'install', 'wp-color-picker', 'customize-controls', 'customize-widgets', 'press-this', 'ie', 'admin-bar');
82
  global $wp_styles;
 
 
 
83
 
84
- foreach ($wp_styles->registered as $script) {
85
- if (!in_array($script->handle, $skip_scr)) {
86
  wp_dequeue_style($script->handle);
87
  }
88
  }
80
 
81
  $skip_scr = array('colors', 'wp-admin', 'login', 'install', 'wp-color-picker', 'customize-controls', 'customize-widgets', 'press-this', 'ie', 'admin-bar');
82
  global $wp_styles;
83
+ $registered_array = $wp_styles->registered;
84
+ if (!is_array($registered_array))
85
+ $registered_array = array();
86
 
87
+ foreach ($registered_array as $script) {
88
+ if (isset($script->handle) && !in_array($script->handle, $skip_scr)) {
89
  wp_dequeue_style($script->handle);
90
  }
91
  }
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
4
  Tags: coming soon, coming soon page, construction, landing page, launch, launch page, maintenance, maintenance mode, newsletter, subscribe, offline, unavailable, under construction, wordpress coming soon, wordpress maintenance mode, wordpress under construction, igniter
5
  Requires at least: 3.0.1
6
  Tested up to: 4.2.2
7
- Stable tag: 1.1
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -93,6 +93,9 @@ You can post your question / suggestion in the [IgniteUp forums](https://wordpre
93
 
94
  == Changelog ==
95
 
 
 
 
96
  = 1.1 =
97
  * Add new template GLASS
98
  * Improved to dequeue other template stylesheets when page is enabled
4
  Tags: coming soon, coming soon page, construction, landing page, launch, launch page, maintenance, maintenance mode, newsletter, subscribe, offline, unavailable, under construction, wordpress coming soon, wordpress maintenance mode, wordpress under construction, igniter
5
  Requires at least: 3.0.1
6
  Tested up to: 4.2.2
7
+ Stable tag: 1.1.1
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
93
 
94
  == Changelog ==
95
 
96
+ = 1.1.1 =
97
+ * Fix a bug occurred on network installations
98
+
99
  = 1.1 =
100
  * Add new template GLASS
101
  * Improved to dequeue other template stylesheets when page is enabled