Companion Auto Update - Version 3.2.2

Version Description

(October 5, 2018) = * Fix: Parse error: syntax error, unexpected [ in cau_functions.php on line 247

Download this release

Release Info

Developer Papin
Plugin Icon 128x128 Companion Auto Update
Version 3.2.2
Comparing to
See all releases

Code changes from version 3.2.1 to 3.2.2

Files changed (3) hide show
  1. cau_functions.php +2 -1
  2. companion-auto-update.php +1 -1
  3. readme.txt +4 -1
cau_functions.php CHANGED
@@ -244,7 +244,8 @@ function cau_active_plugin_info( $slug, $what ) {
244
  $allPlugins = get_plugins();
245
 
246
  foreach ($allPlugins as $key => $value) {
247
- $thisSlug = explode('/',$key)[0];
 
248
  if( $thisSlug == $slug ) {
249
 
250
  if( $what == 'version' ) return $value['Version'];
244
  $allPlugins = get_plugins();
245
 
246
  foreach ($allPlugins as $key => $value) {
247
+ $thisSlug = explode('/', $key);
248
+ $thisSlugE = $thisSlug[0];
249
  if( $thisSlug == $slug ) {
250
 
251
  if( $what == 'version' ) return $value['Version'];
companion-auto-update.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Companion Auto Update
4
  * Plugin URI: http://codeermeneer.nl/portfolio/companion-auto-update/
5
  * Description: This plugin auto updates all plugins, all themes and the wordpress core.
6
- * Version: 3.2.1
7
  * Author: Papin Schipper
8
  * Author URI: http://codeermeneer.nl/
9
  * Contributors: papin
3
  * Plugin Name: Companion Auto Update
4
  * Plugin URI: http://codeermeneer.nl/portfolio/companion-auto-update/
5
  * Description: This plugin auto updates all plugins, all themes and the wordpress core.
6
+ * Version: 3.2.2
7
  * Author: Papin Schipper
8
  * Author URI: http://codeermeneer.nl/
9
  * Contributors: papin
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.me/dakel/2
4
  Tags: auto, automatic, background, update, updates, updating, automatic updates, automatic background updates, easy update, wordpress update, theme update, plugin update, up-to-date, security, update latest version, update core, update wp, update wp core, major updates, minor updates, update to new version, update core, update plugin, update plugins, update plugins automatically, update theme, plugin, theme, advance, control, mail, notifations, enable
5
  Requires at least: 3.5.0
6
  Tested up to: 4.9
7
- Stable tag: 3.2.1
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -71,6 +71,9 @@ For some reason this plugin seems to have trouble with updating themes by Elegan
71
 
72
  == Changelog ==
73
 
 
 
 
74
  = 3.2.1 ( October 2, 2018) =
75
  * Fix: Cross-site request forgery (CSRF)/local file inclusion (LFI) vulnerability.
76
 
4
  Tags: auto, automatic, background, update, updates, updating, automatic updates, automatic background updates, easy update, wordpress update, theme update, plugin update, up-to-date, security, update latest version, update core, update wp, update wp core, major updates, minor updates, update to new version, update core, update plugin, update plugins, update plugins automatically, update theme, plugin, theme, advance, control, mail, notifations, enable
5
  Requires at least: 3.5.0
6
  Tested up to: 4.9
7
+ Stable tag: 3.2.2
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
71
 
72
  == Changelog ==
73
 
74
+ = 3.2.2 (October 5, 2018) =
75
+ * Fix: Parse error: syntax error, unexpected �[� in cau_functions.php on line 247
76
+
77
  = 3.2.1 ( October 2, 2018) =
78
  * Fix: Cross-site request forgery (CSRF)/local file inclusion (LFI) vulnerability.
79