Vanilla 1.1.10 is a product of Lussumo. More Information: Documentation, Community Support.
if (!is_readable($source_file_name)) {
return false;
}
$imgdata = @getimagesize($source_file_name);
if (!$imgdata) {
// Unknown image format, bail out
// Do we want to have video support in the Plogger core?
//return 'plog-graphics/thumb-video.gif';
return false;
}
if (!is_readable($source_file_name)) {
return plog_tr('Cannot read image file!');
}
$imgdata = @getimagesize($source_file_name);
if (!$imgdata) {
// Unknown image format, bail out
// Do we want to have video support in the Plogger core?
//return 'plog-graphics/thumb-video.gif';
return plog_tr('Unknown image format!');
}
1 to 11 of 11