diff options
author | plegall <plg@piwigo.org> | 2005-01-17 21:49:48 +0000 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2005-01-17 21:49:48 +0000 |
commit | fad209723a3792618ffbcb41820f5a15781ffad6 (patch) | |
tree | 6fb04195c944ecd5efe0ecd888b1703508046b13 /include | |
parent | 0df0998ce33cdddf375e5118f4697ef311b4c8c9 (diff) |
- bug 74 fixed : wrong link in thumbnail title representing a recent
category
git-svn-id: http://piwigo.org/svn/trunk@705 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | include/category_recent_cats.inc.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/category_recent_cats.inc.php b/include/category_recent_cats.inc.php index 69db0eb1b..5eaf62a37 100644 --- a/include/category_recent_cats.inc.php +++ b/include/category_recent_cats.inc.php @@ -65,7 +65,7 @@ $conf['level_separator'] = '<br />'; // the name to display while ( $row = mysql_fetch_array( $result ) ) { - $name = get_cat_display_name_cache($row['uppercats'], '<br />', '', false); + $name = get_cat_display_name_cache($row['uppercats'], '', false); $thumbnail_src = get_thumbnail_src($row['path'], @$row['tn_ext']); |