Changeset 499292
- Timestamp:
- 02/02/2012 06:55:47 PM (14 years ago)
- Location:
- space-manager/trunk
- Files:
-
- 3 edited
-
index.php (modified) (1 diff)
-
php/space-manager.class.php (modified) (3 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
space-manager/trunk/index.php
r496193 r499292 4 4 Plugin URI: http://brolly.ca 5 5 Description: Allows for management of Spaces 6 Version: 1. 06 Version: 1.1 7 7 Author: Brolly 8 8 Author URI: http://brolly.ca -
space-manager/trunk/php/space-manager.class.php
r496193 r499292 89 89 $this->checkUpdate(); 90 90 91 add_action('admin_menu', array($this, 'addSpace minMenu'),5);91 add_action('admin_menu', array($this, 'addSpaceManagerMenu'),5); 92 92 93 93 add_filter('plugin_action_links', array($this, 'settingsLink'),5, 2); … … 99 99 } 100 100 101 public function addSpace minMenu()101 public function addSpaceManagerMenu() 102 102 { 103 103 add_submenu_page( … … 126 126 { 127 127 128 if(!isset($_REQUEST[$this->actionVar()]) || !isset($_REQUEST[$this->nonceVar()])) return false; 129 128 130 if(!current_user_can($this->capability())) die('Security check'); 129 130 if(!isset($_REQUEST[$this->actionVar()]) || !isset($_REQUEST[$this->nonceVar()])) return false;131 131 132 132 $action = $_REQUEST[$this->actionVar()]; -
space-manager/trunk/readme.txt
r496193 r499292 4 4 Requires at least: 3.0 5 5 Tested up to: 3.2 6 Stable tag: 1. 06 Stable tag: 1.1 7 7 8 8 Use the built-in Tiny MCE editor to add spaces organized into zones into your sidebars. … … 28 28 == Changelog == 29 29 30 = 1.1 = 31 Fixed problem that caused non administrators to be locked out of the admin 32 30 33 = 1.0 = 31 34 Initial plugin creation
Note: See TracChangeset
for help on using the changeset viewer.