You can do this two easy ways:
1. go to line 580
PHP Code:
$striptheviddetails=strip_tags($theviddetails);
The strip_tags function removes all HTML tags. You can remove this line to disable this. If you do that, then you have to modify line 581.
Change:
PHP Code:
$mainframe->prependMetaTag( 'description', $striptheviddetails );
To:
PHP Code:
$mainframe->prependMetaTag( 'description', $theviddetails );
OR
You can change the strip_tags function, to allow certain tags. Going back to line 580 for an example:
PHP Code:
$striptheviddetails=strip_tags($theviddetails,'<b><a>');
This will allow the bold tag, <b>, and the anchor tag, <a>. Just put whatever takes you want between the two single quotes.
Hope that helps.
|