Version Description
(21/09/2015) = * Fix problme de taille des players dans le cas ou WP est configur en Anglais
Download this release
Release Info
Developer | infomaniak-dev |
Plugin | VOD Infomaniak |
Version | 1.2.8 |
Comparing to | |
See all releases |
Code changes from version 1.2.7 to 1.2.8
- readme.txt +4 -1
- vod.class.php +3 -2
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.1
|
8 |
-
Stable tag: 1.2.
|
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.2.7 (20/09/2015) =
|
76 |
* Mise à jour version
|
77 |
|
5 |
Tags: video, manage, infomaniak, vod
|
6 |
Requires at least: 2.8.6
|
7 |
Tested up to: 4.1
|
8 |
+
Stable tag: 1.2.8
|
9 |
|
10 |
|
11 |
|
72 |
|
73 |
== Changelog ==
|
74 |
|
75 |
+
= 1.2.8 (21/09/2015) =
|
76 |
+
* Fix problème de taille des players dans le cas ou WP est configuré en Anglais
|
77 |
+
|
78 |
= 1.2.7 (20/09/2015) =
|
79 |
* Mise à jour version
|
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.2.
|
9 |
* @copyright infomaniak.ch
|
10 |
*/
|
11 |
|
@@ -15,7 +15,7 @@
|
|
15 |
define('VOD_RIGHT_ADMIN', 4);
|
16 |
|
17 |
class EasyVod {
|
18 |
-
public $version = "1.2.
|
19 |
private $local_version;
|
20 |
private $plugin_url;
|
21 |
private $options;
|
@@ -298,6 +298,7 @@
|
|
298 |
'′', '″',
|
299 |
' ',),
|
300 |
'"', $sContent);
|
|
|
301 |
$sContent = preg_replace('/"+/mi', '"', $sContent); // remplace les xquotes
|
302 |
|
303 |
return $sContent;
|
5 |
*
|
6 |
* @author Destrem Kevin + Davide Rubini + Arnaud Toullieux
|
7 |
* @link http://statslive.infomaniak.ch/vod/api/
|
8 |
+
* @version 1.2.8
|
9 |
* @copyright infomaniak.ch
|
10 |
*/
|
11 |
|
15 |
define('VOD_RIGHT_ADMIN', 4);
|
16 |
|
17 |
class EasyVod {
|
18 |
+
public $version = "1.2.8";
|
19 |
private $local_version;
|
20 |
private $plugin_url;
|
21 |
private $options;
|
298 |
'′', '″',
|
299 |
' ',),
|
300 |
'"', $sContent);
|
301 |
+
$sContent = str_replace(array("’", "′"), "", $sContent);
|
302 |
$sContent = preg_replace('/"+/mi', '"', $sContent); // remplace les xquotes
|
303 |
|
304 |
return $sContent;
|