I have JVD 2.7 installed and found some bad html in the following file:
| Code: |
JOOMLA/components/com_jvideodirect/tools/transformer/fetchit.php
|
line 454:
| Code: |
$jscontents = '<div><div style="float:left;"><a style="position:relative;" href="'.$init->jurl.'index.php?option=com_jvideodirect'.$view.'&v='.$jsas->vname.'"><img width="112px" src="'.$jvdthumbnail.'">'.$vlength.'</img></a></
div><div style="padding: 2px 0 2px 8px; float:left">'.$jsas->title.'</div><div class="clr"><div/></div></div>';
|
should be
| Code: |
$jscontents = '<div><div style="float:left;"><a style="position:relative;" href="'.$init->jurl.'index.php?option=com_jvideodirect'.$view.'&v='.$jsas->vname.'"><img width="112px" src="'.$jvdthumbnail.'">'.$vlength.'</img></a></
div><div style="padding: 2px 0 2px 8px; float:left">'.$jsas->title.'</div><div class="clr"></div></div>';
|
I removed the following piece of invalid html "<div/>". Hope this helps and gets fixed in the next release