VOD Infomaniak - Version 1.3.7

Version Description

(18/05/2016) = * Fix problme compatibilit PHP7

Download this release

Release Info

Developer infomaniak-dev
Plugin Icon wp plugin VOD Infomaniak
Version 1.3.7
Comparing to
See all releases

Code changes from version 1.3.6 to 1.3.7

Files changed (3) hide show
  1. readme.txt +4 -1
  2. vod.class.php +4 -4
  3. vod.php +1 -1
readme.txt CHANGED
@@ -5,7 +5,7 @@ Plugin Name: Vod Infomaniak
5
  Tags: video, manage, infomaniak, vod
6
  Requires at least: 2.8.6
7
  Tested up to: 4.3.1
8
- Stable tag: 1.3.6
9
 
10
 
11
 
@@ -72,6 +72,9 @@ Si vous ne trouvez pas de solution à votre question, vous pouvez aussi nous con
72
 
73
  == Changelog ==
74
 
 
 
 
75
  = 1.3.6 (25/01/2016) =
76
  * Prise en compte HTTPS si besoin
77
 
5
  Tags: video, manage, infomaniak, vod
6
  Requires at least: 2.8.6
7
  Tested up to: 4.3.1
8
+ Stable tag: 1.3.7
9
 
10
 
11
 
72
 
73
  == Changelog ==
74
 
75
+ = 1.3.7 (18/05/2016) =
76
+ * Fix problème compatibilité PHP7
77
+
78
  = 1.3.6 (25/01/2016) =
79
  * Prise en compte HTTPS si besoin
80
 
vod.class.php CHANGED
@@ -5,7 +5,7 @@
5
  *
6
  * @author Destrem Kevin + Davide Rubini + Arnaud Toullieux
7
  * @link http://statslive.infomaniak.ch/vod/api/
8
- * @version 1.3.6
9
  * @copyright infomaniak.ch
10
  */
11
 
@@ -15,7 +15,7 @@
15
  define('VOD_RIGHT_ADMIN', 4);
16
 
17
  class EasyVod {
18
- public $version = "1.3.6";
19
  private $local_version;
20
  private $plugin_url;
21
  private $options;
@@ -317,7 +317,7 @@
317
  $aList = split(" ", $params);
318
  foreach ($aList as $param) {
319
  if (strpos($param, "=") !== false) {
320
- $aCut = split("=", $param);
321
  if (in_array($aCut[0], array("width", "height", "stretch", "autoplay", "loop", "player", "videoimage", "tokenfolder"))) {
322
  $aTagParam[$aCut[0]] = $aCut[1];
323
  }
@@ -332,7 +332,7 @@
332
  }else{
333
  $sProtocol = "http";
334
  }
335
-
336
  $sUrl = $sProtocol."://vod.infomaniak.com/iframe.php";
337
 
338
  $sAccountBase = $this->options['vod_api_id'];
5
  *
6
  * @author Destrem Kevin + Davide Rubini + Arnaud Toullieux
7
  * @link http://statslive.infomaniak.ch/vod/api/
8
+ * @version 1.3.7
9
  * @copyright infomaniak.ch
10
  */
11
 
15
  define('VOD_RIGHT_ADMIN', 4);
16
 
17
  class EasyVod {
18
+ public $version = "1.3.7";
19
  private $local_version;
20
  private $plugin_url;
21
  private $options;
317
  $aList = split(" ", $params);
318
  foreach ($aList as $param) {
319
  if (strpos($param, "=") !== false) {
320
+ $aCut = explode("=", $param);
321
  if (in_array($aCut[0], array("width", "height", "stretch", "autoplay", "loop", "player", "videoimage", "tokenfolder"))) {
322
  $aTagParam[$aCut[0]] = $aCut[1];
323
  }
332
  }else{
333
  $sProtocol = "http";
334
  }
335
+
336
  $sUrl = $sProtocol."://vod.infomaniak.com/iframe.php";
337
 
338
  $sAccountBase = $this->options['vod_api_id'];
vod.php CHANGED
@@ -4,7 +4,7 @@
4
  Plugin URI: http://wordpress.org/extend/plugins/vod-infomaniak/
5
  Description: Easily embed and manage videos from Infomaniak VOD in your posts, comments and RSS feeds. You need an Infomaniak VOD account to use this plugin.
6
  Author: Infomaniak Staff
7
- Version: 1.3.6
8
  Author URI: http://infomaniak.com
9
  */
10
 
4
  Plugin URI: http://wordpress.org/extend/plugins/vod-infomaniak/
5
  Description: Easily embed and manage videos from Infomaniak VOD in your posts, comments and RSS feeds. You need an Infomaniak VOD account to use this plugin.
6
  Author: Infomaniak Staff
7
+ Version: 1.3.7
8
  Author URI: http://infomaniak.com
9
  */
10