Great hack ! useful ! bravo
but it doesn't "recognize" DCR file.. when i add a DCR game to the gallery it shows 0kb
i think there is somethin to add but i don't exactly how..
PHP Code:
if (!strpos($filename,".")){
$size = filesize("../".$filename.".swf");
if ($size >= 1024){
$size = (int)($size / 1024);
}
}else{
$extra = strpos($filename,".");
$cleanname = substr_replace($filename,'',$extra+4);
$size = filesize("../".$cleanname);
if ($size >= 1024){
$size = (int)($size / 1024);
}
}
thanks