WP Add Mime Types - Version 2.3.1

Version Description

  • Tested up to WordPress 5.2.2 and PHP 7.3.
Download this release

Release Info

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

Code changes from version 2.2.0 to 2.3.1

Files changed (2) hide show
  1. readme.txt +16 -3
  2. wp-add-mime-types.php +2 -2
readme.txt CHANGED
@@ -1,9 +1,13 @@
1
  === WP Add Mime Types ===
2
  Contributors: Kimiya Kitani
3
  Tags: mime,file extention
4
- Requires at least: 3.0
5
- Tested up to: 4.8
6
- Stable tag: 2.2.0
 
 
 
 
7
 
8
  The plugin additionally allows the mime types and file extensions to WordPress.
9
 
@@ -65,6 +69,15 @@ Yes, each setting values are saved as the other setting items.
65
 
66
  == Changelog ==
67
 
 
 
 
 
 
 
 
 
 
68
  = 2.2.0 =
69
  * Fixed foreach function warning if a setting value is empty.
70
  * Added to escape HTML tags in a setting value using wp_strip_all_tags function.
1
  === WP Add Mime Types ===
2
  Contributors: Kimiya Kitani
3
  Tags: mime,file extention
4
+ Requires at least: 4.0
5
+ Requires PHP: 5.6
6
+ Tested up to: 5.2.2
7
+ Stable tag: 2.3.1
8
+ License: GPL v2
9
+ License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
+
11
 
12
  The plugin additionally allows the mime types and file extensions to WordPress.
13
 
69
 
70
  == Changelog ==
71
 
72
+ = 2.3.1 =
73
+ * Tested up to WordPress 5.2.2 and PHP 7.3.
74
+
75
+ = 2.3.0 =
76
+ * Tested up to WordPress 5.0 and PHP 7.2.
77
+
78
+ = 2.2.1 =
79
+ * Tested up to WordPress 4.9.
80
+
81
  = 2.2.0 =
82
  * Fixed foreach function warning if a setting value is empty.
83
  * Added to escape HTML tags in a setting value using wp_strip_all_tags function.
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.2.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.2.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.3.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.3.1',
23
  );
24
 
25
  // Add Setting to WordPress 'Settings' menu for Multisite.