Enhanced Media Library - Version 2.0.4.6

Version Description

Release Date - April 29, 2015

Download this release

Release Info

Developer webbistro
Plugin Icon 128x128 Enhanced Media Library
Version 2.0.4.6
Comparing to
See all releases

Code changes from version 2.0.4.5 to 2.0.4.6

Files changed (3) hide show
  1. core/taxonomies.php +2 -2
  2. enhanced-media-library.php +3 -3
  3. readme.txt +11 -4
core/taxonomies.php CHANGED
@@ -370,7 +370,7 @@ if( ! function_exists( 'wpuxss_eml_dropdown_cats' ) ) {
370
  global $current_screen;
371
 
372
  if ( ! is_admin() ) {
373
- return;
374
  }
375
 
376
  $media_library_mode = get_user_option( 'media_library_mode' ) ? get_user_option( 'media_library_mode' ) : 'grid';
@@ -380,7 +380,7 @@ if( ! function_exists( 'wpuxss_eml_dropdown_cats' ) ) {
380
  $whole_select = $output;
381
 
382
  $options_array = array();
383
- while ( false !== ( $option_pos = strpos ( $whole_select, '<option', 7 ) ) )
384
  {
385
  $options_array[] = substr($whole_select, 0, $option_pos);
386
  $whole_select = substr($whole_select, $option_pos);
370
  global $current_screen;
371
 
372
  if ( ! is_admin() ) {
373
+ return $output;
374
  }
375
 
376
  $media_library_mode = get_user_option( 'media_library_mode' ) ? get_user_option( 'media_library_mode' ) : 'grid';
380
  $whole_select = $output;
381
 
382
  $options_array = array();
383
+ while ( strlen( $whole_select ) >= 7 && false !== ( $option_pos = strpos( $whole_select, '<option', 7 ) ) )
384
  {
385
  $options_array[] = substr($whole_select, 0, $option_pos);
386
  $whole_select = substr($whole_select, $option_pos);
enhanced-media-library.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Enhanced Media Library
4
  Plugin URI: http://wpUXsolutions.com
5
  Description: This plugin will be handy for those who need to manage a lot of media files.
6
- Version: 2.0.4.5
7
  Author: wpUXsolutions
8
  Author URI: http://wpUXsolutions.com
9
  Text Domain: eml
@@ -23,7 +23,7 @@ global $wp_version,
23
 
24
 
25
 
26
- $wpuxss_eml_version = '2.0.4.5';
27
 
28
 
29
 
@@ -35,7 +35,7 @@ if( is_admin() ) {
35
 
36
  include_once( 'core/options-pages.php' );
37
  }
38
-
39
 
40
 
41
 
3
  Plugin Name: Enhanced Media Library
4
  Plugin URI: http://wpUXsolutions.com
5
  Description: This plugin will be handy for those who need to manage a lot of media files.
6
+ Version: 2.0.4.6
7
  Author: wpUXsolutions
8
  Author URI: http://wpUXsolutions.com
9
  Text Domain: eml
23
 
24
 
25
 
26
+ $wpuxss_eml_version = '2.0.4.6';
27
 
28
 
29
 
35
 
36
  include_once( 'core/options-pages.php' );
37
  }
38
+
39
 
40
 
41
 
readme.txt CHANGED
@@ -2,8 +2,8 @@
2
  Contributors: webbistro
3
  Tags: media library, taxonomy, taxonomies, mime, mime type, attachment, media category, media categories, media tag, media tags, media taxonomy, media taxonomies, media filter, media organizer, file types, media types, media uploader, custom, media management, attachment management, files management, ux, user experience, wp-admin, admin, categories, category, filter, image, images, media, upload
4
  Requires at least: 4.0
5
- Tested up to: 4.2
6
- Stable tag: 2.0.4.5
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
@@ -74,8 +74,6 @@ Please let us know if you find any issue with the plugins from the list above or
74
 
75
 
76
 
77
-
78
-
79
  == Installation ==
80
 
81
  1. Upload plugin folder to '/wp-content/plugins/' directory
@@ -132,6 +130,15 @@ Right now it is possible via WP_Query ([example of the code](http://wordpress.or
132
 
133
  == Changelog ==
134
 
 
 
 
 
 
 
 
 
 
135
  = 2.0.4.5 =
136
  *Release Date - April 24, 2015*
137
 
2
  Contributors: webbistro
3
  Tags: media library, taxonomy, taxonomies, mime, mime type, attachment, media category, media categories, media tag, media tags, media taxonomy, media taxonomies, media filter, media organizer, file types, media types, media uploader, custom, media management, attachment management, files management, ux, user experience, wp-admin, admin, categories, category, filter, image, images, media, upload
4
  Requires at least: 4.0
5
+ Tested up to: 4.2.1
6
+ Stable tag: 2.0.4.6
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
74
 
75
 
76
 
 
 
77
  == Installation ==
78
 
79
  1. Upload plugin folder to '/wp-content/plugins/' directory
130
 
131
  == Changelog ==
132
 
133
+ = 2.0.4.6 =
134
+ *Release Date - April 29, 2015*
135
+
136
+ = Bugfixes =
137
+ * wp_dropdown_categories bug fixed [Support Request](https://wordpress.org/support/topic/wp_dropdown_categories-broken-with-2045)
138
+ * Few minor bug fixes
139
+
140
+
141
+ &nbsp;
142
  = 2.0.4.5 =
143
  *Release Date - April 24, 2015*
144