WP Maintenance Mode - Version 1.6.9

Version Description

(06/13/2011) = * Small fix for empty string on custom design

Download this release

Release Info

Developer Bueltge
Plugin Icon 128x128 WP Maintenance Mode
Version 1.6.9
Comparing to
See all releases

Code changes from version 1.6.8 to 1.6.9

readme.txt CHANGED
@@ -7,8 +7,8 @@ Author URI: http://bueltge.de/
7
  Donate link: http://bueltge.de/wunschliste/
8
  Tags: maintenance, mode, admin, administration, unavailable, coming soon
9
  Requires at least: 2.6
10
- Tested up to: 3.1.1
11
- Stable tag: 1.6.8
12
 
13
  Adds a splash page to your site that lets visitors know your site is down for maintenance. Full access to the back- & front-end is optional.
14
 
@@ -249,7 +249,10 @@ Please visit [Automatisches Backup der WordPress-Datenbank](http://www.beedy.de/
249
 
250
 
251
  == Changelog ==
252
- = 1.6.8 (04/05/2011)=
 
 
 
253
  * Small changes on check for datepicker
254
  * Fix for Design monster
255
 
7
  Donate link: http://bueltge.de/wunschliste/
8
  Tags: maintenance, mode, admin, administration, unavailable, coming soon
9
  Requires at least: 2.6
10
+ Tested up to: 3.2-beta
11
+ Stable tag: 1.6.9
12
 
13
  Adds a splash page to your site that lets visitors know your site is down for maintenance. Full access to the back- & front-end is optional.
14
 
249
 
250
 
251
  == Changelog ==
252
+ = 1.6.9 (06/13/2011) =
253
+ * Small fix for empty string on custom design
254
+
255
+ = 1.6.8 (04/05/2011) =
256
  * Small changes on check for datepicker
257
  * Fix for Design monster
258
 
screenshot-1.png CHANGED
File without changes
screenshot-10.png CHANGED
File without changes
screenshot-11.png CHANGED
File without changes
screenshot-12.png CHANGED
File without changes
screenshot-13.png CHANGED
File without changes
screenshot-2.png CHANGED
File without changes
screenshot-3.png CHANGED
File without changes
screenshot-4.png CHANGED
File without changes
screenshot-5.png CHANGED
File without changes
screenshot-6.png CHANGED
File without changes
screenshot-7.png CHANGED
File without changes
screenshot-8.png CHANGED
File without changes
screenshot-9.png CHANGED
File without changes
wp-maintenance-mode.php CHANGED
@@ -8,8 +8,8 @@
8
  * Author: Frank Bültge
9
  * Author URI: http://bueltge.de/
10
  * Donate URI: http://bueltge.de/wunschliste/
11
- * Version: 1.6.8
12
- * Last change: 09.01.2011
13
  * Licence: GPL
14
  */
15
 
@@ -875,7 +875,8 @@ if ( !class_exists('WPMaintenanceMode') ) {
875
  $theme = 'es.css';
876
  break;
877
  }
878
- $link = '<link rel="stylesheet" href="' . $this->get_plugins_url( 'styles/', __FILE__ ) . $theme . '" type="text/css" media="all" />' ."\n";
 
879
  echo $link . $style;
880
  }
881
 
8
  * Author: Frank B&uuml;ltge
9
  * Author URI: http://bueltge.de/
10
  * Donate URI: http://bueltge.de/wunschliste/
11
+ * Version: 1.6.9
12
+ * Last change: 13.06.2011
13
  * Licence: GPL
14
  */
15
 
875
  $theme = 'es.css';
876
  break;
877
  }
878
+ if ( ! empty($theme) )
879
+ $link = '<link rel="stylesheet" href="' . $this->get_plugins_url( 'styles/', __FILE__ ) . $theme . '" type="text/css" media="all" />' ."\n";
880
  echo $link . $style;
881
  }
882