Plugin Directory

Changeset 499292


Ignore:
Timestamp:
02/02/2012 06:55:47 PM (14 years ago)
Author:
dan.imbrogno
Message:
  • fixed issue causing non administrators to be locked out of dashboard
Location:
space-manager/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • space-manager/trunk/index.php

    r496193 r499292  
    44Plugin URI: http://brolly.ca
    55Description: Allows for management of Spaces
    6 Version: 1.0
     6Version: 1.1
    77Author: Brolly
    88Author URI: http://brolly.ca
  • space-manager/trunk/php/space-manager.class.php

    r496193 r499292  
    8989            $this->checkUpdate();
    9090           
    91             add_action('admin_menu', array($this, 'addSpaceminMenu'),5);
     91            add_action('admin_menu', array($this, 'addSpaceManagerMenu'),5);
    9292           
    9393            add_filter('plugin_action_links', array($this, 'settingsLink'),5, 2);
     
    9999        }
    100100       
    101         public function addSpaceminMenu()
     101        public function addSpaceManagerMenu()
    102102        {
    103103            add_submenu_page(
     
    126126        {
    127127           
     128            if(!isset($_REQUEST[$this->actionVar()]) || !isset($_REQUEST[$this->nonceVar()])) return false;
     129           
    128130            if(!current_user_can($this->capability())) die('Security check');
    129            
    130             if(!isset($_REQUEST[$this->actionVar()]) || !isset($_REQUEST[$this->nonceVar()])) return false;
    131131           
    132132            $action = $_REQUEST[$this->actionVar()];
  • space-manager/trunk/readme.txt

    r496193 r499292  
    44Requires at least: 3.0
    55Tested up to: 3.2
    6 Stable tag: 1.0
     6Stable tag: 1.1
    77
    88Use the built-in Tiny MCE editor to add spaces organized into zones into your sidebars.
     
    2828== Changelog ==
    2929
     30= 1.1 =
     31Fixed problem that caused non administrators to be locked out of the admin
     32
    3033= 1.0 =
    3134Initial plugin creation
Note: See TracChangeset for help on using the changeset viewer.