Changeset 3408564
- Timestamp:
- 12/02/2025 10:29:00 PM (12 days ago)
- Location:
- media-library-assistant/trunk
- Files:
-
- 3 edited
-
includes/class-mla-core.php (modified) (1 diff)
-
includes/class-mla-media-modal-ajax.php (modified) (2 diffs)
-
index.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
media-library-assistant/trunk/includes/class-mla-core.php
r3381004 r3408564 31 31 * @var string 32 32 */ 33 const MLA_DEVELOPMENT_VERSION = ' ';33 const MLA_DEVELOPMENT_VERSION = '20251202'; 34 34 35 35 /** -
media-library-assistant/trunk/includes/class-mla-media-modal-ajax.php
r3345314 r3408564 254 254 */ 255 255 public static function mla_attachment_fields_to_edit_filter( $form_fields, $post ) { 256 static $log_error = true; 257 256 258 $id = $post->ID; 257 259 … … 295 297 */ 296 298 $post_id = $post->ID; 297 $label = $field['labels']->name; 299 300 if ( true || empty( $field['labels'] ) ) { 301 if ( $log_error ) { 302 $log_error = false; 303 MLACore::mla_debug_add( __LINE__ . " DEBUG: MLAModal_Ajax::mla_attachment_fields_to_edit_filter( {$id} ) \$field = " . var_export( $field, true ), 0x400 ); 304 MLACore::mla_debug_add( __LINE__ . " DEBUG: MLAModal_Ajax::mla_attachment_fields_to_edit_filter( {$key} ) \$value = " . var_export( $value, true ), 0x400 ); 305 } 306 307 if ( ! empty( $field['label'] ) ) { 308 $label = $field['label']; 309 } else { 310 $label = 'No Label'; 311 } 312 } else { 313 $label = $field['labels']->name; 314 } 315 298 316 $terms = get_object_term_cache( $post_id, $key ); 299 317 -
media-library-assistant/trunk/index.php
r3381004 r3408564 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: 20251202 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.30 20 20 Requires at least: 4.7
Note: See TracChangeset
for help on using the changeset viewer.