Kraken.io Image Optimizer - Version 1.0.5.5

Version Description

  • Fixed potentially breaking change to do with new PHP syntax.
Download this release

Release Info

Developer karim79
Plugin Icon 128x128 Kraken.io Image Optimizer
Version 1.0.5.5
Comparing to
See all releases

Code changes from version 1.0.5.4 to 1.0.5.5

Files changed (2) hide show
  1. kraken.php +3 -3
  2. readme.txt +4 -1
kraken.php CHANGED
@@ -21,8 +21,8 @@
21
  * Plugin URI: http://wordpress.org/plugins/kraken-image-optimizer/
22
  * Description: This plugin allows you to optimize your WordPress images through the Kraken API, the world's most advanced image optimization solution.
23
  * Author: Karim Salman
24
- * Version: 1.0.5.4
25
- * Stable Tag: 1.0.5.4
26
  * Author URI: https://kraken.io
27
  * License GPL2
28
  */
@@ -447,7 +447,7 @@ if ( !class_exists( 'Wp_Kraken' ) ) {
447
  $rv = false;
448
  $fp = fopen($image_path, 'w+');
449
  $ch = curl_init();
450
- $headers = [];
451
  $headers[] = "Connection: keep-alive";
452
  $headers[] = "Keep-Alive: 300";
453
  curl_setopt($ch, CURLOPT_URL, $kraked_url);
21
  * Plugin URI: http://wordpress.org/plugins/kraken-image-optimizer/
22
  * Description: This plugin allows you to optimize your WordPress images through the Kraken API, the world's most advanced image optimization solution.
23
  * Author: Karim Salman
24
+ * Version: 1.0.5.5
25
+ * Stable Tag: 1.0.5.5
26
  * Author URI: https://kraken.io
27
  * License GPL2
28
  */
447
  $rv = false;
448
  $fp = fopen($image_path, 'w+');
449
  $ch = curl_init();
450
+ $headers = array();
451
  $headers[] = "Connection: keep-alive";
452
  $headers[] = "Keep-Alive: 300";
453
  curl_setopt($ch, CURLOPT_URL, $kraked_url);
readme.txt CHANGED
@@ -4,7 +4,7 @@ Tags: Image Optimizer, Image Optimiser, Optimize, Images, Media, Performance, SE
4
  Requires at least: 3.0.1
5
  Tested up to: 4.1
6
  Donate link: https://kraken.io
7
- Stable tag: 1.0.5.4
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
10
 
@@ -94,6 +94,9 @@ You will need to switch the Media Library from the Thumbnail view to the List vi
94
 
95
  == Changelog ==
96
 
 
 
 
97
  = 1.0.5.4 =
98
  * More reliable handling of image fetching and overwriting.
99
 
4
  Requires at least: 3.0.1
5
  Tested up to: 4.1
6
  Donate link: https://kraken.io
7
+ Stable tag: 1.0.5.5
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
10
 
94
 
95
  == Changelog ==
96
 
97
+ = 1.0.5.5 =
98
+ * Fixed potentially breaking change to do with new PHP syntax.
99
+
100
  = 1.0.5.4 =
101
  * More reliable handling of image fetching and overwriting.
102