WP Admin UI Customize - Version 1.4.3.2

Version Description

  • Fixed: Post edit ID is change on Admin Bar.
Download this release

Release Info

Developer gqevu6bsiz
Plugin Icon wp plugin WP Admin UI Customize
Version 1.4.3.2
Comparing to
See all releases

Code changes from version 1.4.3.1 to 1.4.3.2

Files changed (2) hide show
  1. readme.txt +5 -2
  2. wp-admin-ui-customize.php +5 -4
readme.txt CHANGED
@@ -1,10 +1,10 @@
1
  === WP Admin UI Customize ===
2
  Contributors: gqevu6bsiz
3
- Donate link: http://gqevu6bsiz.chicappa.jp/please-donation/?utm_source=wporg&utm_medium=donate&utm_content=wauc&utm_campaign=1_4_3_1
4
  Tags: admin, post, posts, page, option, sitemenu, menu, custom, customize, dashboard, admin_bar, multisite, network, metabox
5
  Requires at least: 3.6.1
6
  Tested up to: 3.8
7
- Stable tag: 1.4.3.1
8
  License: GPL2
9
 
10
  Customize the management screen UI.
@@ -50,6 +50,9 @@ These to Customization is possible.
50
 
51
  == Changelog ==
52
 
 
 
 
53
  = 1.4.3.1 =
54
  * Fixed: CSS include miss for Admin bar.
55
 
1
  === WP Admin UI Customize ===
2
  Contributors: gqevu6bsiz
3
+ Donate link: http://gqevu6bsiz.chicappa.jp/please-donation/?utm_source=wporg&utm_medium=donate&utm_content=wauc&utm_campaign=1_4_3_2
4
  Tags: admin, post, posts, page, option, sitemenu, menu, custom, customize, dashboard, admin_bar, multisite, network, metabox
5
  Requires at least: 3.6.1
6
  Tested up to: 3.8
7
+ Stable tag: 1.4.3.2
8
  License: GPL2
9
 
10
  Customize the management screen UI.
50
 
51
  == Changelog ==
52
 
53
+ = 1.4.3.2 =
54
+ * Fixed: Post edit ID is change on Admin Bar.
55
+
56
  = 1.4.3.1 =
57
  * Fixed: CSS include miss for Admin bar.
58
 
wp-admin-ui-customize.php CHANGED
@@ -2,10 +2,10 @@
2
  /*
3
  Plugin Name: WP Admin UI Customize
4
  Description: An excellent plugin to customize the management screens.
5
- Plugin URI: http://wpadminuicustomize.com/?utm_source=use_plugin&utm_medium=list&utm_content=wauc&utm_campaign=1_4_3_1
6
- Version: 1.4.3.1
7
  Author: gqevu6bsiz
8
- Author URI: http://gqevu6bsiz.chicappa.jp/?utm_source=use_plugin&utm_medium=list&utm_content=wauc&utm_campaign=1_4_3_1
9
  Text Domain: wauc
10
  Domain Path: /languages
11
  */
@@ -55,7 +55,7 @@ class WP_Admin_UI_Customize
55
 
56
 
57
  function __construct() {
58
- $this->Ver = '1.4.3.1';
59
  $this->Name = 'WP Admin UI Customize';
60
  $this->Dir = plugin_dir_path( __FILE__ );
61
  $this->Url = plugin_dir_url( __FILE__ );
@@ -1689,6 +1689,7 @@ class WP_Admin_UI_Customize
1689
  if( !empty( $All_Nodes["edit"] ) ) {
1690
  $node["title"] = $All_Nodes["edit"]->title;
1691
  $node["href"] = $All_Nodes["edit"]->href;
 
1692
  } else {
1693
  unset( $SettingNodes[$Boxtype][$node_type][$key] );
1694
  continue;
2
  /*
3
  Plugin Name: WP Admin UI Customize
4
  Description: An excellent plugin to customize the management screens.
5
+ Plugin URI: http://wpadminuicustomize.com/?utm_source=use_plugin&utm_medium=list&utm_content=wauc&utm_campaign=1_4_3_2
6
+ Version: 1.4.3.2
7
  Author: gqevu6bsiz
8
+ Author URI: http://gqevu6bsiz.chicappa.jp/?utm_source=use_plugin&utm_medium=list&utm_content=wauc&utm_campaign=1_4_3_2
9
  Text Domain: wauc
10
  Domain Path: /languages
11
  */
55
 
56
 
57
  function __construct() {
58
+ $this->Ver = '1.4.3.2';
59
  $this->Name = 'WP Admin UI Customize';
60
  $this->Dir = plugin_dir_path( __FILE__ );
61
  $this->Url = plugin_dir_url( __FILE__ );
1689
  if( !empty( $All_Nodes["edit"] ) ) {
1690
  $node["title"] = $All_Nodes["edit"]->title;
1691
  $node["href"] = $All_Nodes["edit"]->href;
1692
+ $node["id"] = $All_Nodes["edit"]->id;
1693
  } else {
1694
  unset( $SettingNodes[$Boxtype][$node_type][$key] );
1695
  continue;