diff options
author | plegall <plg@piwigo.org> | 2005-03-12 10:27:43 +0000 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2005-03-12 10:27:43 +0000 |
commit | 0755ca8bfe3ba4711be84089ac83da98e4dd1b44 (patch) | |
tree | cad9a1a378738e81d195ecd1a08cef343155dc98 | |
parent | f9823c912b84218eec7456cd24ed137146090232 (diff) |
- bug fixed : there was no category name displayed in notification mails for
new comment in special categories (other than numeric
categories). Solution was to search related categories at the beginning of
picture.php
git-svn-id: http://piwigo.org/svn/trunk@745 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | picture.php | 52 |
1 files changed, 28 insertions, 24 deletions
diff --git a/picture.php b/picture.php index 22d86fd72..71cc36676 100644 --- a/picture.php +++ b/picture.php @@ -74,6 +74,26 @@ if (!$belongs) echo $lang['thumbnails'].'</a></div>'; exit(); } +//---------------------------------------------------------- related categories +$query = ' +SELECT category_id,uppercats,commentable,global_rank + FROM '.IMAGE_CATEGORY_TABLE.' + INNER JOIN '.CATEGORIES_TABLE.' ON category_id = id + WHERE image_id = '.$_GET['image_id']; +if ($user['forbidden_categories'] != '') +{ + $query.= ' + AND category_id NOT IN ('.$user['forbidden_categories'].')'; +} +$query.= ' +;'; +$result = pwg_query($query); +$related_categories = array(); +while ($row = mysql_fetch_array($result)) +{ + array_push($related_categories, $row); +} +usort($related_categories, 'global_rank_compare'); //------------------------------------- prev, current & next picture management $picture = array(); @@ -348,10 +368,14 @@ if ( isset( $_POST['content'] ) && !empty($_POST['content']) ) // notification to the administrators if ( $conf['mail_notification'] ) { + // find any related category (can be unreachable to this admin) + $category = $related_categories[0]; // locally, we change the $conf['level_separator'] $conf_separator = $conf['level_separator']; $conf['level_separator'] = ' > '; - $cat_name = get_cat_display_name($page['cat_name'], ''); + $cat_name = get_cat_display_name_cache($category['uppercats'], + '', + false); $conf['level_separator'] = $conf_separator; $cat_name = strip_tags( $cat_name ); @@ -583,7 +607,7 @@ if (isset($picture['current']['comment']) $template->assign_block_vars( 'legend', array( - 'COMMENT_IMG' => $picture['current']['comment'] + 'COMMENT_IMG' => nl2br($picture['current']['comment']) )); } @@ -745,36 +769,16 @@ SELECT COUNT(rate) AS count )); } // related categories -$query = ' -SELECT category_id,uppercats,commentable,global_rank - FROM '.IMAGE_CATEGORY_TABLE.' - INNER JOIN '.CATEGORIES_TABLE.' ON category_id = id - WHERE image_id = '.$_GET['image_id']; -if ($user['forbidden_categories'] != '') -{ - $query.= ' - AND category_id NOT IN ('.$user['forbidden_categories'].')'; -} -$query.= ' -;'; -$result = pwg_query($query); -$cat_array = array(); -while ($row = mysql_fetch_array($result)) -{ - array_push($cat_array, $row); -} -usort($cat_array, 'global_rank_compare'); - $cat_output = ''; $page['show_comments'] = false; -foreach ($cat_array as $category) +foreach ($related_categories as $category) { if ($cat_output != '') { $cat_output.= '<br />'; } - if (count($cat_array) > 3) + if (count($related_categories) > 3) { $cat_output .= get_cat_display_name_cache($category['uppercats']); } |