WP Add Mime Types - Version 2.0.1

Version Description

  • Fixed the message in the setting menu
Download this release

Release Info

Developer kimipooh
Plugin Icon wp plugin WP Add Mime Types
Version 2.0.1
Comparing to
See all releases

Code changes from version 2.0.0 to 2.0.1

Files changed (3) hide show
  1. includes/admin.php +1 -1
  2. readme.txt +4 -1
  3. wp-add-mime-types.php +2 -2
includes/admin.php CHANGED
@@ -102,7 +102,7 @@ foreach($allowed_mime_values as $type=>$value){
102
  <br/>
103
  <fieldset style="border:1px solid #777777; width: 750px; padding-left: 6px;">
104
  <legend><h3><?php _e('Past Add Values before Multisite function was enabled.','wp-add-mime-types'); ?></h3></legend>
105
- <p><span style="color:red;"><?php _e('* This is for a multisite network administrator when the site was multisite.<br/> The following values are disabled after multisite function was enabled.','wp-add-mime-types'); ?></span></p>
106
 
107
  <?php // If the permission is not allowed, the user can only read the setting. ?>
108
  <textarea name="mime_type_values" cols="100" rows="10" disabled><?php if(isset($past_mime_type_values) && is_array($past_mime_type_values)) foreach ($past_mime_type_values as $m_type=>$m_value) echo esc_html($m_value) . "\n"; ?></textarea>
102
  <br/>
103
  <fieldset style="border:1px solid #777777; width: 750px; padding-left: 6px;">
104
  <legend><h3><?php _e('Past Add Values before Multisite function was enabled.','wp-add-mime-types'); ?></h3></legend>
105
+ <p><span style="color:red;"><?php _e('* This is for multisite network administrators and site administrators.<br/> The following values are disabled after multisite function was enabled.','wp-add-mime-types'); ?></span></p>
106
 
107
  <?php // If the permission is not allowed, the user can only read the setting. ?>
108
  <textarea name="mime_type_values" cols="100" rows="10" disabled><?php if(isset($past_mime_type_values) && is_array($past_mime_type_values)) foreach ($past_mime_type_values as $m_type=>$m_value) echo esc_html($m_value) . "\n"; ?></textarea>
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: Kimiya Kitani
3
  Tags: mime,file extention
4
  Requires at least: 3.0
5
  Tested up to: 4.5.1
6
- Stable tag: 2.0.0
7
 
8
  The plugin additionally allows the mime types and file extensions to WordPress.
9
 
@@ -53,6 +53,9 @@ Yes, each setting values are saved as the other setting items.
53
 
54
  == Changelog ==
55
 
 
 
 
56
  = 2.0.0 =
57
  * Supported Multisite.
58
  * Tested up to WordPress 4.5.1
3
  Tags: mime,file extention
4
  Requires at least: 3.0
5
  Tested up to: 4.5.1
6
+ Stable tag: 2.0.1
7
 
8
  The plugin additionally allows the mime types and file extensions to WordPress.
9
 
53
 
54
  == Changelog ==
55
 
56
+ = 2.0.1 =
57
+ * Fixed the message in the setting menu
58
+
59
  = 2.0.0 =
60
  * Supported Multisite.
61
  * Tested up to WordPress 4.5.1
wp-add-mime-types.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: WP Add Mime Types
4
  Plugin URI:
5
  Description: The plugin additionally allows the mime types and file extensions to WordPress.
6
- Version: 2.0.0
7
  Author: Kimiya Kitani
8
  Author URI: http://kitaney-wordpress.blogspot.jp/
9
  Text Domain: wp-add-mime-types
@@ -19,7 +19,7 @@ add_action('plugins_loaded', 'enable_language_translation');
19
  $plugin_basename = plugin_basename ( __FILE__ );
20
 
21
  $default_var = array(
22
- 'wp_add_mime_types' => '2.0.0',
23
  );
24
 
25
  // Add Setting to WordPress 'Settings' menu for Multisite.
3
  Plugin Name: WP Add Mime Types
4
  Plugin URI:
5
  Description: The plugin additionally allows the mime types and file extensions to WordPress.
6
+ Version: 2.0.1
7
  Author: Kimiya Kitani
8
  Author URI: http://kitaney-wordpress.blogspot.jp/
9
  Text Domain: wp-add-mime-types
19
  $plugin_basename = plugin_basename ( __FILE__ );
20
 
21
  $default_var = array(
22
+ 'wp_add_mime_types' => '2.0.1',
23
  );
24
 
25
  // Add Setting to WordPress 'Settings' menu for Multisite.