Maintenance - Version 1.2.3

Version Description

// 28.08.2013

  • Wordpress 3.6 support
  • Bug fix
  • Warning Messages, open_basedir conflict - resolved.
Download this release

Release Info

Developer fruitfulcode
Plugin Icon 128x128 Maintenance
Version 1.2.3
Comparing to
See all releases

Code changes from version 1.2.2 to 1.2.3

Files changed (3) hide show
  1. functions.php +1 -1
  2. index.php +1 -1
  3. readme.txt +8 -2
functions.php CHANGED
@@ -46,7 +46,7 @@
46
  $dir = dirname(__FILE__).'/'.LIB_DIR.'/';
47
  if ($handle = opendir($dir)) {
48
  while (false !== ($file = readdir($handle))) {
49
- if ($file != "." && $file != ".." && !is_file($file) && file_exists($dir.$file.'/index.php') ) {
50
  $mt_themes[] = ucfirst($file);
51
  }
52
  }
46
  $dir = dirname(__FILE__).'/'.LIB_DIR.'/';
47
  if ($handle = opendir($dir)) {
48
  while (false !== ($file = readdir($handle))) {
49
+ if ($file != "." && $file != ".." && !is_file($file) && file_exists($dir.$file) ) {
50
  $mt_themes[] = ucfirst($file);
51
  }
52
  }
index.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Maintenance
4
  Plugin URI: http://wordpress.org/extend/plugins/maintenance/
5
  Description: Take your site down from public view with a click of a button hiding the site when you need to change a few things or run an upgrade, making it only accessible by login and password. There is also an area to add a custom message which will be shown to the users while your site is down. Users stay on the same page when they input wrong initials.
6
- Version: 1.2.2
7
  Author: fruitfulcode
8
  Author URI: http://fruitfulcode.com
9
  License: GPL2
3
  Plugin Name: Maintenance
4
  Plugin URI: http://wordpress.org/extend/plugins/maintenance/
5
  Description: Take your site down from public view with a click of a button hiding the site when you need to change a few things or run an upgrade, making it only accessible by login and password. There is also an area to add a custom message which will be shown to the users while your site is down. Users stay on the same page when they input wrong initials.
6
+ Version: 1.2.3
7
  Author: fruitfulcode
8
  Author URI: http://fruitfulcode.com
9
  License: GPL2
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: fruitfulcode
3
  Donate link: http://fruitfulcode.com/
4
  Tags: maintenance, login, under-construction, administration, offline, unavailable, landing page
5
  Requires at least: 3.0
6
- Tested up to: 3.5.1
7
- Stable tag: 1.2.2
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -48,6 +48,12 @@ No, it will be display error on current maintenance page, without redirect to wp
48
 
49
  == Changelog ==
50
 
 
 
 
 
 
 
51
  = 1.2.2 = // 12.07.2013
52
 
53
  * Re-directed user to the root of the doman (not to subdirectory).
3
  Donate link: http://fruitfulcode.com/
4
  Tags: maintenance, login, under-construction, administration, offline, unavailable, landing page
5
  Requires at least: 3.0
6
+ Tested up to: 3.6
7
+ Stable tag: 1.2.3
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
48
 
49
  == Changelog ==
50
 
51
+ = 1.2.3 = // 28.08.2013
52
+
53
+ * Wordpress 3.6 support
54
+ * Bug fix
55
+ * Warning Messages, open_basedir conflict - resolved.
56
+
57
  = 1.2.2 = // 12.07.2013
58
 
59
  * Re-directed user to the root of the doman (not to subdirectory).