xml compliance?

This commit is contained in:
Garvin Hicking 2012-03-26 18:54:36 +02:00
parent cefd864999
commit 9a40598d78
3 changed files with 6 additions and 4 deletions

View file

@ -1,5 +1,7 @@
# $Id$
1.35:
* Use XML compliant controls=1 syntax
1.34:
* media links having a (configurable) CSS class style are ignored (not replaced by players or added to RSS).

View file

@ -160,14 +160,14 @@ clip: {
');
@DEFINE('PLUGIN_PODCAST_HTML5_AUDIOPLAYER', '
<audio controls preload="none">
<audio controls=1 preload="none">
<source src="#url#" type="#mime#" />
' . PLUGIN_PODCAST_FLOWPLAYER . '
</audio>
');
@DEFINE('PLUGIN_PODCAST_HTML5_VIDEOPLAYER', '
<video controls preload="none">
<video controls=1 preload="none">
<source src="#url#" type="#mime#" />
' . PLUGIN_PODCAST_FLOWPLAYER . '
</video>

View file

@ -14,7 +14,7 @@ if (file_exists($probelang)) {
include_once dirname(__FILE__) . '/lang_en.inc.php';
include_once dirname(__FILE__) . '/podcast_player.php';
@define("SERENDIPITY_EVENT_PODCAST_VERSION", "1.34");
@define("SERENDIPITY_EVENT_PODCAST_VERSION", "1.35");
class serendipity_event_podcast extends serendipity_event {
/**