Index: trunk/extensions/TimedMediaHandler/TimedMediaTransformOutput.php |
— | — | @@ -83,7 +83,7 @@ |
84 | 84 | return ''; |
85 | 85 | } |
86 | 86 | foreach( $tagSet as $attr ){ |
87 | | - $s.= Html::rawElement($tagName, $attr, ''); |
| 87 | + $s .= Html::element( $tagName, $attr); |
88 | 88 | } |
89 | 89 | return $s; |
90 | 90 | } |
— | — | @@ -211,8 +211,7 @@ |
212 | 212 | 'height' => $height, |
213 | 213 | // Get the correct size: |
214 | 214 | 'poster' => $posterUrl, |
215 | | - 'alt' => $this->file->getTitle()->getText(), |
216 | | - |
| 215 | + |
217 | 216 | // Note we set controls to true ( for no-js players ) when mwEmbed rewrites the interface |
218 | 217 | // it updates the controls attribute of the embed video |
219 | 218 | 'controls'=> 'true', |