WP Add Mime Types - Version 1.3.9

Version Description

  • Tested up to WordPress 4.4.1
Download this release

Release Info

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

Code changes from version 1.3.8 to 1.3.9

Files changed (2) hide show
  1. readme.txt +5 -2
  2. wp-add-mime-types.php +2 -4
readme.txt CHANGED
@@ -2,8 +2,8 @@
2
  Contributors: Kimiya Kitani
3
  Tags: mime,file extention
4
  Requires at least: 3.0
5
- Tested up to: 4.4
6
- Stable tag: 1.3.8
7
 
8
  The plugin additionally allows the mime types and file extensions to WordPress.
9
 
@@ -38,6 +38,9 @@ You can see the list of allowed mime types and file extensions by WordPress.
38
 
39
  == Changelog ==
40
 
 
 
 
41
  = 1.3.8 =
42
  * Tested up to WordPress 4.4
43
  * Fixed language translation setting.
2
  Contributors: Kimiya Kitani
3
  Tags: mime,file extention
4
  Requires at least: 3.0
5
+ Tested up to: 4.4.1
6
+ Stable tag: 1.3.9
7
 
8
  The plugin additionally allows the mime types and file extensions to WordPress.
9
 
38
 
39
  == Changelog ==
40
 
41
+ = 1.3.9 =
42
+ * Tested up to WordPress 4.4.1
43
+
44
  = 1.3.8 =
45
  * Tested up to WordPress 4.4
46
  * Fixed language translation setting.
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: 1.3.8
7
  Author: Kimiya Kitani
8
  Author URI: http://kitaney.jp/~kitani
9
  */
@@ -17,7 +17,7 @@ add_action('plugins_loaded', 'enable_language_translation');
17
 
18
 
19
  $default_var = array(
20
- 'wp_add_mime_types' => '1.3.8',
21
  );
22
 
23
  // Add Setting to WordPress 'Settings' menu.
@@ -140,5 +140,3 @@ function add_allow_upload_extension( $mimes ) {
140
  // Register the Procedure process to WordPress.
141
  add_filter( 'upload_mimes', 'add_allow_upload_extension' );
142
 
143
-
144
- ?>
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: 1.3.9
7
  Author: Kimiya Kitani
8
  Author URI: http://kitaney.jp/~kitani
9
  */
17
 
18
 
19
  $default_var = array(
20
+ 'wp_add_mime_types' => '1.3.9',
21
  );
22
 
23
  // Add Setting to WordPress 'Settings' menu.
140
  // Register the Procedure process to WordPress.
141
  add_filter( 'upload_mimes', 'add_allow_upload_extension' );
142