aboutsummaryrefslogtreecommitdiffstats
path: root/include/category_recent_cats.inc.php
diff options
context:
space:
mode:
Diffstat (limited to 'include/category_recent_cats.inc.php')
-rw-r--r--include/category_recent_cats.inc.php14
1 files changed, 11 insertions, 3 deletions
diff --git a/include/category_recent_cats.inc.php b/include/category_recent_cats.inc.php
index c91a738fa..283d15ec6 100644
--- a/include/category_recent_cats.inc.php
+++ b/include/category_recent_cats.inc.php
@@ -80,9 +80,17 @@ SELECT id,file,tn_ext,storage_category_id
$file = get_filename_wo_extension( $subrow['file'] );
// creating links for thumbnail and associated category
- $thumbnail_link = get_complete_dir( $subrow['storage_category_id'] );
- $thumbnail_link.= 'thumbnail/'.$conf['prefix_thumbnail'];
- $thumbnail_link.= $file.'.'.$subrow['tn_ext'];
+ if (isset($subrow['tn_ext']) and $subrow['tn_ext'] != '')
+ {
+ $thumbnail_link = get_complete_dir($subrow['storage_category_id']);
+ $thumbnail_link.= 'thumbnail/'.$conf['prefix_thumbnail'];
+ $thumbnail_link.= $file.'.'.$subrow['tn_ext'];
+ }
+ else
+ {
+ $thumbnail_link = './template/'.$user['template'].'/mimetypes/';
+ $thumbnail_link.= strtolower(get_extension($subrow['file'])).'.png';
+ }
$url_link = PHPWG_ROOT_PATH.'category.php?cat='.$row['category_id'];