Enhanced Media Library - Version 2.0.4.3

Version Description

Release Date - March 21, 2015

Download this release

Release Info

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

Code changes from version 2.0.4.2 to 2.0.4.3

Files changed (3) hide show
  1. core/taxonomies.php +6 -4
  2. enhanced-media-library.php +4 -3
  3. readme.txt +12 -1
core/taxonomies.php CHANGED
@@ -524,6 +524,11 @@ if( ! function_exists( 'wpuxss_eml_parse_tax_query' ) ) {
524
  $query->query['category'] = $query->query_vars['category'] = $_REQUEST['category'];
525
  }
526
 
 
 
 
 
 
527
  if ( isset( $query->query_vars['taxonomy'] ) && isset( $query->query_vars['term'] ) )
528
  {
529
  $tax = $query->query_vars['taxonomy'];
@@ -532,10 +537,7 @@ if( ! function_exists( 'wpuxss_eml_parse_tax_query' ) ) {
532
  if ( $term )
533
  {
534
  if ( 'category' == $tax )
535
- $tax = 'category_name';
536
-
537
- if ( 'post_tag' == $tax )
538
- $tax = 'tag';
539
 
540
  $query->query_vars[$tax] = $term->term_id;
541
  $query->query[$tax] = $term->term_id;
524
  $query->query['category'] = $query->query_vars['category'] = $_REQUEST['category'];
525
  }
526
 
527
+ if ( isset( $_REQUEST['post_tag'] ) )
528
+ {
529
+ $query->query['post_tag'] = $query->query_vars['post_tag'] = $_REQUEST['post_tag'];
530
+ }
531
+
532
  if ( isset( $query->query_vars['taxonomy'] ) && isset( $query->query_vars['term'] ) )
533
  {
534
  $tax = $query->query_vars['taxonomy'];
537
  if ( $term )
538
  {
539
  if ( 'category' == $tax )
540
+ $tax = 'category_name';
 
 
 
541
 
542
  $query->query_vars[$tax] = $term->term_id;
543
  $query->query[$tax] = $term->term_id;
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.2
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.2';
27
 
28
 
29
 
@@ -33,7 +33,8 @@ include_once( 'core/taxonomies.php' );
33
  if( is_admin() ) {
34
 
35
  include_once( 'core/options-pages.php' );
36
- }
 
37
 
38
 
39
 
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.3
7
  Author: wpUXsolutions
8
  Author URI: http://wpUXsolutions.com
9
  Text Domain: eml
23
 
24
 
25
 
26
+ $wpuxss_eml_version = '2.0.4.3';
27
 
28
 
29
 
33
  if( is_admin() ) {
34
 
35
  include_once( 'core/options-pages.php' );
36
+ }
37
+
38
 
39
 
40
 
readme.txt CHANGED
@@ -3,7 +3,7 @@ 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.1.1
6
- Stable tag: 2.0.4.2
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
@@ -127,6 +127,17 @@ Right now it is possible via WP_Query ([example of the code](http://wordpress.or
127
 
128
  == Changelog ==
129
 
 
 
 
 
 
 
 
 
 
 
 
130
  = 2.0.4.2 =
131
  *Release Date - March 09, 2015*
132
 
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.1.1
6
+ Stable tag: 2.0.4.3
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
127
 
128
  == Changelog ==
129
 
130
+ = 2.0.4.3 =
131
+ *Release Date - March 21, 2015*
132
+
133
+ = Bugfixes =
134
+ * List View: Incorrect filtration for post tags fixed
135
+ * Media > Add New: Incorrect media files selection (multiple uploading) fixed (PRO only)
136
+ * Edit details for all media file types fixed (PRO only) [Support Request](https://wordpress.org/support/topic/edit-video-detail-missing)
137
+ * Other minor bug fixes
138
+
139
+
140
+  
141
  = 2.0.4.2 =
142
  *Release Date - March 09, 2015*
143