Plugin Directory

Changeset 722264


Ignore:
Timestamp:
06/03/2013 09:03:22 PM (13 years ago)
Author:
jkmassel
Message:

Adding version 1.09. Fixes a security bug.
And also a typo

Location:
underconstruction
Files:
12 added
3 edited

Legend:

Unmodified
Added
Removed
  • underconstruction/trunk/readme.txt

    r601807 r722264  
    44Tags: construction, under construction, private, preview, security, coming soon
    55Requires at least: 2.7
    6 Tested up to: 3.4.2
    7 Stable tag: 1.08
     6Tested up to: 3.5.1
     7Stable tag: 1.09
    88
    99Creates a 'Coming Soon' page that will show for all users who are not logged in
     
    4343
    4444== Changelog ==
     45
     46= 1.09 =
     47* Fixed an issue identified Charlie Eriksen. Listed as Secunia Advisory SA52881. Fixes a security issue that could possibly result in the plugin being inadvertently deactivated.
     48* Fixes a typo on the options screen
    4549
    4650= 1.08 =
  • underconstruction/trunk/ucOptions.php

    r460071 r722264  
    11<?php
     2
     3if($_SERVER['REQUEST_METHOD'] == "POST"){
     4    if(!wp_verify_nonce($_POST['save_options_field'], 'save_options')){
     5        die("Sorry, but this request is invalid");
     6    }
     7}
     8
    29if (isset($_GET['turnOnUnderConstructionMode']))
    310{
     
    293300                            value="1" id="displayOption1"
    294301                            <?php if ($this->displayStatusCodeIs(1)) { echo ' checked="checked"'; } ?>>
    295                             Display the default under construction page , but use custom text
     302                            Display the default under construction page, but use custom text
    296303                        </label> <br /> <label title="HTTP503"> <input type="radio"
    297304                            name="display_options" value="2" id="displayOption2"
     
    338345        </div>
    339346        <p class="submit">
     347               <?php wp_nonce_field('save_options','save_options_field'); ?>
     348
     349       
    340350            <input type="submit" name="Submit" class="button-primary"
    341351                value="Save Changes" id="submitChangesToUnderConstructionPlugin" />
  • underconstruction/trunk/underConstruction.php

    r602499 r722264  
    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.08
     6 Version: 1.09
    77 Author: Jeremy Massel
    88 Author URI: http://www.masseltech.com/
Note: See TracChangeset for help on using the changeset viewer.