aboutsummaryrefslogtreecommitdiffstats
path: root/include/category_default.inc.php
diff options
context:
space:
mode:
authorflop25 <flop25@piwigo.org>2011-08-09 14:21:33 +0000
committerflop25 <flop25@piwigo.org>2011-08-09 14:21:33 +0000
commit803d50f534e370844d4d83ed731210600d1eefdc (patch)
tree9bdf827370392b7e85b048362acf2b16d503e1bd /include/category_default.inc.php
parent3ed5fad6ff8ab26c52ac13353339d9d19e2ad954 (diff)
feature:2390
All the legend is hidden if $conf['show_thumbnail_caption'] = false; git-svn-id: http://piwigo.org/svn/trunk@11924 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'include/category_default.inc.php')
-rw-r--r--include/category_default.inc.php61
1 files changed, 29 insertions, 32 deletions
diff --git a/include/category_default.inc.php b/include/category_default.inc.php
index c6e9834d7..c4eb448bf 100644
--- a/include/category_default.inc.php
+++ b/include/category_default.inc.php
@@ -136,37 +136,34 @@ foreach ($pictures as $row)
$tpl_var['NB_HITS'] = $row['hit'];
}
- if ($conf['show_thumbnail_caption'])
- {// name of the picture
- if (isset($row['name']) and $row['name'] != '')
- {
- $name = $row['name'];
- }
- else
- {
- $name = str_replace('_', ' ', get_filename_wo_extension($row['file']));
- }
-
- $name = trigger_event('render_element_description', $name);
-
- switch ($page['section'])
- {
- case 'best_rated' :
- {
- $name = '('.$row['rating_score'].') '.$name;
- break;
- }
- case 'most_visited' :
- {
- if ( !$user['show_nb_hits']) {
- $name = '('.$row['hit'].') '.$name;
- }
- break;
- }
- }
-
- $tpl_var['NAME'] = $name;
- }
+ if (isset($row['name']) and $row['name'] != '')
+ {
+ $name = $row['name'];
+ }
+ else
+ {
+ $name = str_replace('_', ' ', get_filename_wo_extension($row['file']));
+ }
+
+ $name = trigger_event('render_element_description', $name);
+
+ switch ($page['section'])
+ {
+ case 'best_rated' :
+ {
+ $name = '('.$row['rating_score'].') '.$name;
+ break;
+ }
+ case 'most_visited' :
+ {
+ if ( !$user['show_nb_hits']) {
+ $name = '('.$row['hit'].') '.$name;
+ }
+ break;
+ }
+ }
+
+ $tpl_var['NAME'] = $name;
if ( isset($nb_comments_of) )
{
@@ -178,7 +175,7 @@ foreach ($pictures as $row)
$tpl_thumbnails_var = trigger_event('loc_end_index_thumbnails', $tpl_thumbnails_var, $pictures);
$template->assign('thumbnails', $tpl_thumbnails_var);
-
+$template->assign('SHOW_THUMBNAIL_CAPTION', $conf['show_thumbnail_caption']);
$template->assign_var_from_handle('THUMBNAILS', 'index_thumbnails');
pwg_debug('end include/category_default.inc.php');