Hi
Please in files:
- mod_news_pro_gk5/portal_modes/videogallery/controller.php
- mod_news_pro_gk5/portal_modes/videolist/controller.php
In both cases add this line to a line number 125:
- Code: Select all
$vid = JHTML::_('content.prepare', $vid);
Here is a part of the code with this new line to compare how it should looks like:
- Code: Select all
// prepare the results
foreach($videos as $v) {
$vid = $v->video;
+ $vid = JHTML::_('content.prepare', $vid);
if(trim($vid) != '') {
$vid_matches = array();
preg_match('@src="(.*?)"@mi', $vid, $vid_matches);