Changeset 3345314
- Timestamp:
- 08/15/2025 11:06:18 PM (4 months ago)
- Location:
- media-library-assistant/trunk
- Files:
-
- 4 edited
-
includes/class-mla-core.php (modified) (1 diff)
-
includes/class-mla-media-modal-ajax.php (modified) (2 diffs)
-
index.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
media-library-assistant/trunk/includes/class-mla-core.php
r3344918 r3345314 31 31 * @var string 32 32 */ 33 const MLA_DEVELOPMENT_VERSION = ' ';33 const MLA_DEVELOPMENT_VERSION = '20250815'; 34 34 35 35 /** -
media-library-assistant/trunk/includes/class-mla-media-modal-ajax.php
r3258833 r3345314 700 700 701 701 if ( isset( $query['post_mime_type'] ) ) { 702 if ( 'detached' == $query['post_mime_type'] ) {702 if ( 'detached' === $query['post_mime_type'] ) { 703 703 $query['detached'] = '1'; 704 704 unset( $query['post_mime_type'] ); 705 } elseif ( 'attached' == $query['post_mime_type'] ) {705 } elseif ( 'attached' === $query['post_mime_type'] ) { 706 706 $query['detached'] = '0'; 707 707 unset( $query['post_mime_type'] ); 708 } elseif ( 'mine' == $query['post_mime_type'] ) {708 } elseif ( 'mine' === $query['post_mime_type'] ) { 709 709 $query['author'] = get_current_user_id(); 710 710 unset( $query['post_mime_type'] ); 711 } elseif ( 'trash' == $query['post_mime_type'] ) {711 } elseif ( 'trash' === $query['post_mime_type'] ) { 712 712 $query['status'] = 'trash'; 713 713 unset( $query['post_mime_type'] ); … … 725 725 // Set Featured Image queries must use only images 726 726 if ( isset( $raw_query['mla_state'] ) && ( 'featured-image' === $raw_query['mla_state'] ) ) { 727 if ( 0 !== strpos( $query['post_mime_type'], 'image' ) ) { 727 if ( isset( $query['post_mime_type'] ) ) { 728 if ( 0 !== strpos( $query['post_mime_type'], 'image' ) ) { 729 $query['post_mime_type'] = 'image'; 730 } 731 } else { 728 732 $query['post_mime_type'] = 'image'; 729 733 } -
media-library-assistant/trunk/index.php
r3344918 r3345314 16 16 Plugin Name: Media Library Assistant 17 17 Plugin URI: http://davidlingren.com/#two 18 Description: Enhances the Media Library; powerful [mla_gallery] [mla_tag_cloud] [mla_term_list], taxonomy support, IPTC/EXIF/XMP/PDF processing, bulk/quick edit.18 Description: 20250815 Enhances the Media Library; powerful [mla_gallery] [mla_tag_cloud] [mla_term_list], taxonomy support, IPTC/EXIF/XMP/PDF processing, bulk/quick edit. 19 19 Version: 3.28 20 20 Requires at least: 4.7 -
media-library-assistant/trunk/readme.txt
r3344918 r3345314 199 199 200 200 == Changelog == 201 202 = 3.29 = 203 * Fix: For the "Featured image" Media Manager Modal (popup) Window, a PHP warning when filtering the content with a custom field view/query has been eliminated. 201 204 202 205 = 3.28 =
Note: See TracChangeset
for help on using the changeset viewer.