Ozh' Admin Drop Down Menu - Version 3.6.3

Version Description

Download this release

Release Info

Developer ozh
Plugin Icon 128x128 Ozh' Admin Drop Down Menu
Version 3.6.3
Comparing to
See all releases

Code changes from version 3.6.1 to 3.6.3

Files changed (4) hide show
  1. inc/adminmenu.css.php +1 -1
  2. inc/core.php +1 -1
  3. readme.txt +1 -1
  4. wp_ozh_adminmenu.php +6 -3
inc/adminmenu.css.php CHANGED
@@ -100,7 +100,7 @@ header('Content-type:text/css');
100
  }
101
  #ozhmenu li { /* all list items */
102
  display:inline;
103
- line-height:200%;
104
  list-style-image:none;
105
  list-style-position:outside;
106
  list-style-type:none;
100
  }
101
  #ozhmenu li { /* all list items */
102
  display:inline;
103
+ line-height:200% !important;
104
  list-style-image:none;
105
  list-style-position:outside;
106
  list-style-type:none;
inc/core.php CHANGED
@@ -321,7 +321,7 @@ function wp_ozh_adminmenu_init() {
321
 
322
  // On minimode, add a Logout link to the Users menu
323
  if ($wp_ozh_adminmenu['minimode'])
324
- add_users_page(__('Log Out'), __('Log Out'), 1, 'ozh_admin_menu_logout');
325
  }
326
 
327
  // Stuff to do when loading the admin plugin page
321
 
322
  // On minimode, add a Logout link to the Users menu
323
  if ($wp_ozh_adminmenu['minimode'])
324
+ add_users_page(__('Log Out'), __('Log Out'), 'read', 'ozh_admin_menu_logout');
325
  }
326
 
327
  // Stuff to do when loading the admin plugin page
readme.txt CHANGED
@@ -1,7 +1,7 @@
1
  === Ozh' Admin Drop Down Menu ===
2
  Donate link: http://planetozh.com/exit/donate
3
  Tags: ozh, menu, menus, dashboard, admin, dropdown, drop down, productivity, css
4
- Requires at least: 3.2
5
  Tested up to: 9.9
6
  Stable tag: trunk
7
  Contributors: ozh
1
  === Ozh' Admin Drop Down Menu ===
2
  Donate link: http://planetozh.com/exit/donate
3
  Tags: ozh, menu, menus, dashboard, admin, dropdown, drop down, productivity, css
4
+ Requires at least: 3.3
5
  Tested up to: 9.9
6
  Stable tag: trunk
7
  Contributors: ozh
wp_ozh_adminmenu.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Ozh' Admin Drop Down Menu
4
  Plugin URI: http://planetozh.com/blog/my-projects/wordpress-admin-menu-drop-down-css/
5
  Description: All admin links available in a neat horizontal drop down menu. Saves lots of screen real estate! <strong>For WordPress 3.0+</strong>
6
- Version: 3.6.1
7
  Author: Ozh
8
  Author URI: http://ozh.org/
9
  */
@@ -111,10 +111,13 @@ Author URI: http://ozh.org/
111
  * 3.6: Fixed: Compatibility with WP 3.2
112
  Fixed: useless double slash in image URLs in .css.php
113
  * 3.6.1: Added: Filter for global config array
 
 
 
114
  */
115
 
116
 
117
- define( 'OZH_MENU_VER', '3.6.1' );
118
 
119
  /***** Hook things in when visiting an admin page. When viewing a blog page, nothing even loads in memory. ****/
120
  if ( is_admin() ){
@@ -126,7 +129,7 @@ if ( is_admin() ){
126
  add_action('in_admin_footer', 'wp_ozh_adminmenu_footer'); // Add unobstrusive credits in footer
127
  add_filter('plugin_action_links_'.plugin_basename(__FILE__), 'wp_ozh_adminmenu_plugin_actions', -10); // Add Config link to plugin list
128
  add_filter('ozh_adminmenu_icon_ozh_admin_menu', 'wp_ozh_adminmenu_customicon'); // This plugin will have its own icon of course
129
- add_filter('all_admin_notices', 'wp_ozh_adminmenu', -9999); // Add the new admin menu right after the header area. Make sure we're first.
130
  }
131
 
132
  // Make sure it's WP 3.2+ only
3
  Plugin Name: Ozh' Admin Drop Down Menu
4
  Plugin URI: http://planetozh.com/blog/my-projects/wordpress-admin-menu-drop-down-css/
5
  Description: All admin links available in a neat horizontal drop down menu. Saves lots of screen real estate! <strong>For WordPress 3.0+</strong>
6
+ Version: 3.6.3
7
  Author: Ozh
8
  Author URI: http://ozh.org/
9
  */
111
  * 3.6: Fixed: Compatibility with WP 3.2
112
  Fixed: useless double slash in image URLs in .css.php
113
  * 3.6.1: Added: Filter for global config array
114
+ * 3.6.2: Fixed: compatibility with WP 3.3 (thanks brasofilo!)
115
+ * 3.6.3: Fixed: compatibility with Chrome 17 (thanks Samuel Aguilera!)
116
+ Fixed: bug if user has not admin capability and option "Minimal Mode" is checked (thanks Ed!)
117
  */
118
 
119
 
120
+ define( 'OZH_MENU_VER', '3.6.3' );
121
 
122
  /***** Hook things in when visiting an admin page. When viewing a blog page, nothing even loads in memory. ****/
123
  if ( is_admin() ){
129
  add_action('in_admin_footer', 'wp_ozh_adminmenu_footer'); // Add unobstrusive credits in footer
130
  add_filter('plugin_action_links_'.plugin_basename(__FILE__), 'wp_ozh_adminmenu_plugin_actions', -10); // Add Config link to plugin list
131
  add_filter('ozh_adminmenu_icon_ozh_admin_menu', 'wp_ozh_adminmenu_customicon'); // This plugin will have its own icon of course
132
+ add_filter('in_admin_header', 'wp_ozh_adminmenu', -9999); // Add the new admin menu right after the header area. Make sure we're first.
133
  }
134
 
135
  // Make sure it's WP 3.2+ only