aboutsummaryrefslogtreecommitdiffstats
path: root/include/category_subcats.inc.php
diff options
context:
space:
mode:
Diffstat (limited to 'include/category_subcats.inc.php')
-rw-r--r--include/category_subcats.inc.php14
1 files changed, 11 insertions, 3 deletions
diff --git a/include/category_subcats.inc.php b/include/category_subcats.inc.php
index cf63d7e1f..a7791a5a2 100644
--- a/include/category_subcats.inc.php
+++ b/include/category_subcats.inc.php
@@ -89,9 +89,17 @@ SELECT file,tn_ext,storage_category_id
$file = get_filename_wo_extension($image_row['file']);
// creating links for thumbnail and associated category
- $thumbnail_link = get_complete_dir($image_row['storage_category_id']);
- $thumbnail_link.= 'thumbnail/'.$conf['prefix_thumbnail'];
- $thumbnail_link.= $file.'.'.$image_row['tn_ext'];
+ if (isset($image_row['tn_ext']) and $image_row['tn_ext'] != '')
+ {
+ $thumbnail_link = get_complete_dir($image_row['storage_category_id']);
+ $thumbnail_link.= 'thumbnail/'.$conf['prefix_thumbnail'];
+ $thumbnail_link.= $file.'.'.$image_row['tn_ext'];
+ }
+ else
+ {
+ $thumbnail_link = './template/'.$user['template'].'/mimetypes/';
+ $thumbnail_link.= strtolower(get_extension($image_row['file'])).'.png';
+ }
$thumbnail_title = $lang['hint_category'];