Media Library Assistant - Version 3.04

Version Description

  • Fix: When Photo Engine (WP/LR Sync) is active, a PHP Fatal Error with mapping rules during "sync" operations has been corrected.
Download this release

Release Info

Developer dglingren
Plugin Icon 128x128 Media Library Assistant
Version 3.04
Comparing to
See all releases

Code changes from version 3.03 to 3.04

includes/class-mla-core.php CHANGED
@@ -21,7 +21,7 @@ class MLACore {
21
  *
22
  * @var string
23
  */
24
- const CURRENT_MLA_VERSION = '3.03';
25
 
26
  /**
27
  * Current date for Development Versions, empty for production versions
21
  *
22
  * @var string
23
  */
24
+ const CURRENT_MLA_VERSION = '3.04';
25
 
26
  /**
27
  * Current date for Development Versions, empty for production versions
includes/class-mla-options.php CHANGED
@@ -803,7 +803,7 @@ class MLAOptions {
803
  } else {
804
  // WPLR sync invokes this filter multiple times, changing file data in between; flush the cache
805
  if ( isset( $_SERVER['REQUEST_URI'] ) && false !== strpos( $_SERVER['REQUEST_URI'], '/?wplr-sync-api' ) ) { // phpcs:ignore
806
- mla_expand_field_level_parameters( '', NULL, array(), -1 );
807
  }
808
 
809
  if ( $options['enable_iptc_exif_update'] || $options['enable_custom_field_update'] ) {
803
  } else {
804
  // WPLR sync invokes this filter multiple times, changing file data in between; flush the cache
805
  if ( isset( $_SERVER['REQUEST_URI'] ) && false !== strpos( $_SERVER['REQUEST_URI'], '/?wplr-sync-api' ) ) { // phpcs:ignore
806
+ MLAData::mla_expand_field_level_parameters( '', NULL, array(), -1 );
807
  }
808
 
809
  if ( $options['enable_iptc_exif_update'] || $options['enable_custom_field_update'] ) {
index.php CHANGED
@@ -6,7 +6,7 @@
6
  * will the rest of the plugin be loaded and run.
7
  *
8
  * @package Media Library Assistant
9
- * @version 3.03
10
  */
11
 
12
  /*
@@ -16,7 +16,7 @@ Description: Enhances the Media Library; powerful [mla_gallery] [mla_tag_cloud]
16
  Author: David Lingren
17
  Text Domain: media-library-assistant
18
  Domain Path: /languages
19
- Version: 3.03
20
  Author URI: http://davidlingren.com/
21
 
22
  Copyright 2011-2022 David Lingren
6
  * will the rest of the plugin be loaded and run.
7
  *
8
  * @package Media Library Assistant
9
+ * @version 3.04
10
  */
11
 
12
  /*
16
  Author: David Lingren
17
  Text Domain: media-library-assistant
18
  Domain Path: /languages
19
+ Version: 3.04
20
  Author URI: http://davidlingren.com/
21
 
22
  Copyright 2011-2022 David Lingren
readme.txt CHANGED
@@ -5,7 +5,7 @@ Tags: categories, gallery, images, media, media library, tags
5
  Requires at least: 3.5.0
6
  Tested up to: 6.0.2
7
  Requires PHP: 5.3
8
- Stable tag: 3.03
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
@@ -187,6 +187,9 @@ All of the MLA source code has been annotated with "DocBlocks", a special type o
187
 
188
  == Changelog ==
189
 
 
 
 
190
  = 3.03 =
191
  * Fix: For the `[mla_gallery]` shortcode, a defect (introduced in v3.02) in expanding template values has been corrected.
192
 
@@ -358,8 +361,8 @@ All of the MLA source code has been annotated with "DocBlocks", a special type o
358
 
359
  == Upgrade Notice ==
360
 
361
- = 3.03 =
362
- IMPORTANT: For the [mla_gallery] shortcode, a defect (introduced in v3.02) in expanding template values has been corrected.
363
 
364
  == Other Notes ==
365
 
5
  Requires at least: 3.5.0
6
  Tested up to: 6.0.2
7
  Requires PHP: 5.3
8
+ Stable tag: 3.04
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
187
 
188
  == Changelog ==
189
 
190
+ = 3.04 =
191
+ * Fix: When Photo Engine (WP/LR Sync) is active, a PHP Fatal Error with mapping rules during "sync" operations has been corrected.
192
+
193
  = 3.03 =
194
  * Fix: For the `[mla_gallery]` shortcode, a defect (introduced in v3.02) in expanding template values has been corrected.
195
 
361
 
362
  == Upgrade Notice ==
363
 
364
+ = 3.04 =
365
+ Fix: When Photo Engine (WP/LR Sync) is active, a PHP Fatal Error with mapping rules during "sync" operations has been corrected.
366
 
367
  == Other Notes ==
368