4
Quote:
Google video embed won't play or fetch a logo.
Please post or pm the google video link and I test it to find out why it won't play.
Some embed sources have random values in their thumbnail paths and can't be coded to auto fetch. For those sources a image url has to be entered manually and the submitted image url must have a jpg, png or gif extension else the fetch function will fail.
To remove the file extension check, edit submit.functions.php lines 471 -476
Remove or Comment this:
$logoext = substr($fetchurl, -4);
$allowedlogoext = array(".jpg", ".gif", ".png");
if(!in_array($logoext,$allowedlogoext)){
echo _MD_LOGO_FETCHFAIL." "._MD_EXTENSION_INVALID;
return false;
}