aboutsummaryrefslogtreecommitdiffstats
path: root/category.php
diff options
context:
space:
mode:
Diffstat (limited to 'category.php')
-rw-r--r--category.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/category.php b/category.php
index ed5889951..1d84483a7 100644
--- a/category.php
+++ b/category.php
@@ -269,7 +269,9 @@ $template->assign_block_vars('summary', array(
));
//------------------------------------------------------ main part : thumbnails
-if (isset($page['cat']) and $page['cat_nb_images'] != 0)
+if (isset($page['cat'])
+ and ((is_numeric($page['cat']) and $page['cat_nb_images'] != 0)
+ or $page['cat'] == 'search'))
{
include(PHPWG_ROOT_PATH.'include/category_default.inc.php');
}