WP Admin UI Customize - Version 1.1.1

Version Description

I fixed bug the core update.

Download this release

Release Info

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

Code changes from version 1.1 to 1.1.1

Files changed (2) hide show
  1. readme.txt +4 -1
  2. wp-admin-ui-customize.php +3 -4
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link:
4
  Tags: admin, post, posts, page, option, sitemenu, menu, custom, customize, dashboard, admin_bar
5
  Requires at least: 3.4.2
6
  Tested up to: 3.5.1
7
- Stable tag: 1.1
8
  License: GPL2
9
 
10
  Customize the management screen UI.
@@ -49,6 +49,9 @@ These to Customization is possible.
49
 
50
  == Changelog ==
51
 
 
 
 
52
  = 1.1 =
53
  Possible to customize is the wp_admin_bar.
54
  will check whether the authority has been set.
4
  Tags: admin, post, posts, page, option, sitemenu, menu, custom, customize, dashboard, admin_bar
5
  Requires at least: 3.4.2
6
  Tested up to: 3.5.1
7
+ Stable tag: 1.1.1
8
  License: GPL2
9
 
10
  Customize the management screen UI.
49
 
50
  == Changelog ==
51
 
52
+ = 1.1.1 =
53
+ I fixed bug the core update.
54
+
55
  = 1.1 =
56
  Possible to customize is the wp_admin_bar.
57
  will check whether the authority has been set.
wp-admin-ui-customize.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: WP Admin UI Customize
4
  Description: Customize the management screen UI.
5
  Plugin URI: http://gqevu6bsiz.chicappa.jp
6
- Version: 1.1
7
  Author: gqevu6bsiz
8
  Author URI: http://gqevu6bsiz.chicappa.jp/author/admin/
9
  Text Domain: wauc
@@ -45,7 +45,7 @@ class WP_Admin_UI_Customize
45
 
46
 
47
  function __construct() {
48
- $this->Ver = '1.1';
49
  $this->Name = 'WP Admin UI Customize';
50
  $this->Dir = WP_PLUGIN_URL . '/' . dirname( plugin_basename( __FILE__ ) ) . '/';
51
  $this->ltd = 'wauc';
@@ -807,7 +807,6 @@ class WP_Admin_UI_Customize
807
  if( !empty( $GetData["notice_update_core"] ) ) {
808
  add_filter( 'update_footer' , '__return_false' , 20) ;
809
  add_filter( 'site_transient_update_core' , array( $this , 'notice_update_core' ) );
810
- //add_filter( 'site_transient_update_core' , '__return_zero' );
811
  }
812
 
813
  if( !empty( $GetData["notice_update_plugin"] ) ) {
@@ -823,7 +822,7 @@ class WP_Admin_UI_Customize
823
 
824
  // FilterStart
825
  function notice_update_core( $site_transient_update_core ) {
826
- $site_transient_update_core->updates = '';
827
 
828
  return $site_transient_update_core;
829
  }
3
  Plugin Name: WP Admin UI Customize
4
  Description: Customize the management screen UI.
5
  Plugin URI: http://gqevu6bsiz.chicappa.jp
6
+ Version: 1.1.1
7
  Author: gqevu6bsiz
8
  Author URI: http://gqevu6bsiz.chicappa.jp/author/admin/
9
  Text Domain: wauc
45
 
46
 
47
  function __construct() {
48
+ $this->Ver = '1.1.1';
49
  $this->Name = 'WP Admin UI Customize';
50
  $this->Dir = WP_PLUGIN_URL . '/' . dirname( plugin_basename( __FILE__ ) ) . '/';
51
  $this->ltd = 'wauc';
807
  if( !empty( $GetData["notice_update_core"] ) ) {
808
  add_filter( 'update_footer' , '__return_false' , 20) ;
809
  add_filter( 'site_transient_update_core' , array( $this , 'notice_update_core' ) );
 
810
  }
811
 
812
  if( !empty( $GetData["notice_update_plugin"] ) ) {
822
 
823
  // FilterStart
824
  function notice_update_core( $site_transient_update_core ) {
825
+ $site_transient_update_core->updates[0]->response = 'latest';
826
 
827
  return $site_transient_update_core;
828
  }