Quote:
Originally Posted by s.molinari
Anyone have any other tips for this issue? It below being the external img BBcode setting.
...
Scott
|
Good catch. The normal BBCode parser doesn't seem to handle that.
In downloads.php
find
PHP Code:
$file['description'] = $bbcode_parser->do_parse($file['description'], false, true, true, true, true, $cachable);
and add this above
PHP Code:
require_once(DIR . '/includes/functions_video.php');
$file['description'] = parse_video_bbcode($file['description']);