Asset CleanUp: Page Speed Booster - Version 1.2.9.4

Version Description

  • Bug Fix: If PHP version is lower than 7, an error is shown when fecthing the plugins' icons in the background to be shown on the management list (when sorted by the assets' location)
Download this release

Release Info

Developer gabelivan
Plugin Icon 128x128 Asset CleanUp: Page Speed Booster
Version 1.2.9.4
Comparing to
See all releases

Code changes from version 1.2.9.3 to 1.2.9.4

Files changed (3) hide show
  1. classes/Misc.php +1 -2
  2. readme.txt +4 -1
  3. wpacu.php +2 -2
classes/Misc.php CHANGED
@@ -413,8 +413,7 @@ class Misc
413
  continue;
414
  }
415
 
416
- $firstIconKey = array_key_first($pluginInfo->icons);
417
- $pluginIcon = $pluginInfo->icons[$firstIconKey];
418
 
419
  if ($pluginIcon !== '') {
420
  $activePluginsIcons[$pluginSlug] = $pluginIcon;
413
  continue;
414
  }
415
 
416
+ $pluginIcon = array_shift($pluginInfo->icons);
 
417
 
418
  if ($pluginIcon !== '') {
419
  $activePluginsIcons[$pluginSlug] = $pluginIcon;
readme.txt CHANGED
@@ -4,7 +4,7 @@ Tags: pagespeed, page speed, dequeue, performance, gtmetrix
4
  Donate link: https://gabelivan.com/items/wp-asset-cleanup-pro/?utm_source=wp_org_lite&utm_medium=donate
5
  Requires at least: 4.4
6
  Tested up to: 5.0.3
7
- Stable tag: 1.2.9.3
8
  License: GPLv3
9
  License URI: http://www.gnu.org/licenses/gpl.html
10
 
@@ -131,6 +131,9 @@ With the recently released "Test Mode" feature, you can safely unload assets on
131
  4. Scripts (.JS) are selected for site-wide unload
132
 
133
  == Changelog ==
 
 
 
134
  = 1.2.9.3 =
135
  * New sorting by location (default) option in "Assets List Layout" setting
136
  * Cache transients are also cleared when resetting everything
4
  Donate link: https://gabelivan.com/items/wp-asset-cleanup-pro/?utm_source=wp_org_lite&utm_medium=donate
5
  Requires at least: 4.4
6
  Tested up to: 5.0.3
7
+ Stable tag: 1.2.9.4
8
  License: GPLv3
9
  License URI: http://www.gnu.org/licenses/gpl.html
10
 
131
  4. Scripts (.JS) are selected for site-wide unload
132
 
133
  == Changelog ==
134
+ = 1.2.9.4 =
135
+ * Bug Fix: If PHP version is lower than 7, an error is shown when fecthing the plugins' icons in the background to be shown on the management list (when sorted by the assets' location)
136
+
137
  = 1.2.9.3 =
138
  * New sorting by location (default) option in "Assets List Layout" setting
139
  * Cache transients are also cleared when resetting everything
wpacu.php CHANGED
@@ -2,13 +2,13 @@
2
  /*
3
  * Plugin Name: Asset CleanUp: Page Speed Booster
4
  * Plugin URI: https://wordpress.org/plugins/wp-asset-clean-up/
5
- * Version: 1.2.9.3
6
  * Description: Prevent Chosen Scripts & Styles from loading in Posts/Pages to reduce HTTP Requests and have the website load faster
7
  * Author: Gabriel Livan
8
  * Author URI: http://gabelivan.com/
9
  */
10
 
11
- define('WPACU_PLUGIN_VERSION', '1.2.9.3');
12
 
13
  // Exit if accessed directly
14
  if (! defined('ABSPATH')) {
2
  /*
3
  * Plugin Name: Asset CleanUp: Page Speed Booster
4
  * Plugin URI: https://wordpress.org/plugins/wp-asset-clean-up/
5
+ * Version: 1.2.9.4
6
  * Description: Prevent Chosen Scripts & Styles from loading in Posts/Pages to reduce HTTP Requests and have the website load faster
7
  * Author: Gabriel Livan
8
  * Author URI: http://gabelivan.com/
9
  */
10
 
11
+ define('WPACU_PLUGIN_VERSION', '1.2.9.4');
12
 
13
  // Exit if accessed directly
14
  if (! defined('ABSPATH')) {