Plugin Directory

Changeset 460264


Ignore:
Timestamp:
11/07/2011 04:00:35 PM (14 years ago)
Author:
jkmassel
Message:

Adding 1.07 build - fixes an issue with the loading image not showing up, and fixes an issue with errors being printed

Location:
underconstruction
Files:
3 added
1 deleted
2 edited
10 copied

Legend:

Unmodified
Added
Removed
  • underconstruction/tags/1.07/readme.txt

    r460071 r460264  
    55Requires at least: 2.7
    66Tested up to: 3.2.1
    7 Stable tag: 1.06
     7Stable tag: 1.07
    88
    99Creates a 'Coming Soon' page that will show for all users who are not logged in
     
    4343
    4444== Changelog ==
     45
     46= 1.07 =
     47* Fixed a bug where a warning could get emitted causing errors to be printed to the screen
    4548
    4649= 1.06 =
  • underconstruction/tags/1.07/underConstruction.php

    r460071 r460264  
    44 Plugin URI: http://www.masseltech.com/
    55 Description: Makes it so your site can only be accessed by users who log in. Useful for developing a site on a live server, without the world being able to see it
    6  Version: 1.06
     6 Version: 1.07
    77 Author: Jeremy Massel
    88 Author URI: http://www.masseltech.com/
     
    8282            {
    8383                $array = get_option('underConstructionIPWhitelist');
    84 
     84               
     85                if(!is_array($array)){
     86                    $array = array();
     87                }
     88               
    8589                if(!in_array($_SERVER['REMOTE_ADDR'], $array)){
    8690
  • underconstruction/trunk/readme.txt

    r460071 r460264  
    55Requires at least: 2.7
    66Tested up to: 3.2.1
    7 Stable tag: 1.06
     7Stable tag: 1.07
    88
    99Creates a 'Coming Soon' page that will show for all users who are not logged in
     
    4343
    4444== Changelog ==
     45
     46= 1.07 =
     47* Fixed a bug where a warning could get emitted causing errors to be printed to the screen
    4548
    4649= 1.06 =
  • underconstruction/trunk/underConstruction.php

    r460071 r460264  
    44 Plugin URI: http://www.masseltech.com/
    55 Description: Makes it so your site can only be accessed by users who log in. Useful for developing a site on a live server, without the world being able to see it
    6  Version: 1.06
     6 Version: 1.07
    77 Author: Jeremy Massel
    88 Author URI: http://www.masseltech.com/
     
    8282            {
    8383                $array = get_option('underConstructionIPWhitelist');
    84 
     84               
     85                if(!is_array($array)){
     86                    $array = array();
     87                }
     88               
    8589                if(!in_array($_SERVER['REMOTE_ADDR'], $array)){
    8690
Note: See TracChangeset for help on using the changeset viewer.