aboutsummaryrefslogtreecommitdiff
path: root/app/class
diff options
context:
space:
mode:
authorvincent-peugnet <v.peugnet@free.fr>2020-08-11 22:47:53 +0200
committervincent-peugnet <v.peugnet@free.fr>2020-08-11 22:47:53 +0200
commit60ceeaa41717db1ce27dfb468d4ba5019f34ec4e (patch)
tree81ac0affe0507f17920bd37453fcf11c77777f83 /app/class
parent93e64fd8516a10befbe9a805808b37870a8eeda8 (diff)
downloadwcms-60ceeaa41717db1ce27dfb468d4ba5019f34ec4e.tar.gz
wcms-60ceeaa41717db1ce27dfb468d4ba5019f34ec4e.zip
fix #123 media video code generator bug
Diffstat (limited to 'app/class')
-rw-r--r--app/class/Media.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/class/Media.php b/app/class/Media.php
index 3a34a04..1a1e54a 100644
--- a/app/class/Media.php
+++ b/app/class/Media.php
@@ -104,7 +104,7 @@ class Media extends Item
$src = $this->getincludepath();
$ext = $this->extension;
$code = '&lt;video controls=&quot;&quot;&gt;';
- $code .= '&lt;source src=&quot;' . $src . '&quot; type="video/' . $ext . '&quot;&gt;&lt;/video&gt;';
+ $code .= '&lt;source src=&quot;' . $src . '&quot; type=&quot;video/' . $ext . '&quot;&gt;&lt;/video&gt;';
break;
default: