diff options
Diffstat (limited to 'thumbnail.php')
-rw-r--r-- | thumbnail.php | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/thumbnail.php b/thumbnail.php index b4c745ae2..fe8ca8bab 100644 --- a/thumbnail.php +++ b/thumbnail.php @@ -13,15 +13,17 @@ // Get file thumbnail size
$size = get_input('size','small');
- if ($size != 'small') {
+ if ($size != 'small' && $size != 'thumb') {
$size = 'large';
}
// Get file entity
if ($file = get_entity($file_guid)) {
- if ($file->getSubtype() == "image") {
+ if ($file->getSubtype() == "image") {
// Get file thumbnail
- if ($size == "small") {
+ if ($size === "thumb") {
+ $thumbfile = $file->thumbnail;
+ } else if ($size === "small") {
$thumbfile = $file->smallthumb;
} else {
$thumbfile = $file->largethumb;
@@ -48,4 +50,4 @@ header("Content-type: image");
echo $contents;
exit;
-?>
\ No newline at end of file +?>
|