WP Admin UI Customize - Version 1.4.1

Version Description

  • Fixed bug: X-XSS-Protection.
Download this release

Release Info

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

Code changes from version 1.4 to 1.4.1

inc/setting_default.php CHANGED
@@ -53,7 +53,7 @@ wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', arr
53
  <div class="stuffbox" id="aboutbox">
54
  <h3><span class="hndle"><?php _e( 'About plugin' , $this->ltd_p ); ?></span></h3>
55
  <div class="inside">
56
- <p><?php _e( 'Version checked' , $this->ltd_p ); ?> : 3.5.2 - 3.6.1</p>
57
  <ul>
58
  <li><a href="<?php echo $this->Site; ?>?utm_source=use_plugin&utm_medium=side&utm_content=<?php echo $this->ltd; ?>&utm_campaign=<?php echo str_replace( '.' , '_' , $this->Ver ); ?>" target="_blank"><?php _e( 'Plugin\'s site' , $this->ltd_p ); ?></a></li>
59
  <li><a href="<?php echo $this->AuthorUrl; ?>?utm_source=use_plugin&utm_medium=side&utm_content=<?php echo $this->ltd; ?>&utm_campaign=<?php echo str_replace( '.' , '_' , $this->Ver ); ?>" target="_blank"><?php _e( 'Developer\'s site' , $this->ltd_p ); ?></a></li>
53
  <div class="stuffbox" id="aboutbox">
54
  <h3><span class="hndle"><?php _e( 'About plugin' , $this->ltd_p ); ?></span></h3>
55
  <div class="inside">
56
+ <p><?php _e( 'Version checked' , $this->ltd_p ); ?> : 3.5.2 - 3.7.1</p>
57
  <ul>
58
  <li><a href="<?php echo $this->Site; ?>?utm_source=use_plugin&utm_medium=side&utm_content=<?php echo $this->ltd; ?>&utm_campaign=<?php echo str_replace( '.' , '_' , $this->Ver ); ?>" target="_blank"><?php _e( 'Plugin\'s site' , $this->ltd_p ); ?></a></li>
59
  <li><a href="<?php echo $this->AuthorUrl; ?>?utm_source=use_plugin&utm_medium=side&utm_content=<?php echo $this->ltd; ?>&utm_campaign=<?php echo str_replace( '.' , '_' , $this->Ver ); ?>" target="_blank"><?php _e( 'Developer\'s site' , $this->ltd_p ); ?></a></li>
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
4
  Tags: admin, post, posts, page, option, sitemenu, menu, custom, customize, dashboard, admin_bar, multisite, network, metabox
5
  Requires at least: 3.5.2
6
- Tested up to: 3.6.1
7
- Stable tag: 1.4
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.4 =
53
  * Removed: Remove meta box feature.
54
  * Added: Manage to meta boxes.
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_1
4
  Tags: admin, post, posts, page, option, sitemenu, menu, custom, customize, dashboard, admin_bar, multisite, network, metabox
5
  Requires at least: 3.5.2
6
+ Tested up to: 3.7.1
7
+ Stable tag: 1.4.1
8
  License: GPL2
9
 
10
  Customize the management screen UI.
49
 
50
  == Changelog ==
51
 
52
+ = 1.4.1 =
53
+ * Fixed bug: X-XSS-Protection.
54
+
55
  = 1.4 =
56
  * Removed: Remove meta box feature.
57
  * Added: Manage to meta boxes.
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
6
- Version: 1.4
7
  Author: gqevu6bsiz
8
- Author URI: http://gqevu6bsiz.chicappa.jp/?utm_source=use_plugin&utm_medium=list&utm_content=wauc&utm_campaign=1_4
9
  Text Domain: wauc
10
  Domain Path: /languages
11
  */
@@ -53,7 +53,7 @@ class WP_Admin_UI_Customize
53
 
54
 
55
  function __construct() {
56
- $this->Ver = '1.4';
57
  $this->Name = 'WP Admin UI Customize';
58
  $this->Dir = plugin_dir_path( __FILE__ );
59
  $this->Url = plugin_dir_url( __FILE__ );
@@ -142,7 +142,7 @@ class WP_Admin_UI_Customize
142
 
143
  if( !empty( $_GET["page"] ) ) {
144
  $page = strip_tags( $_GET["page"] );
145
- if( $page == $this->PageSlug . '_admin_bar' ) {
146
  @header("X-XSS-Protection: 0");
147
  }
148
  }
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_1
6
+ Version: 1.4.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_1
9
  Text Domain: wauc
10
  Domain Path: /languages
11
  */
53
 
54
 
55
  function __construct() {
56
+ $this->Ver = '1.4.1';
57
  $this->Name = 'WP Admin UI Customize';
58
  $this->Dir = plugin_dir_path( __FILE__ );
59
  $this->Url = plugin_dir_url( __FILE__ );
142
 
143
  if( !empty( $_GET["page"] ) ) {
144
  $page = strip_tags( $_GET["page"] );
145
+ if( $page == $this->PageSlug ) {
146
  @header("X-XSS-Protection: 0");
147
  }
148
  }