diff options
author | plegall <plg@piwigo.org> | 2005-08-18 21:20:04 +0000 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2005-08-18 21:20:04 +0000 |
commit | f05a541c55e93d10de1919e6e701aff4489be7b1 (patch) | |
tree | 6af693bc668fda4007330527974544424bac6025 | |
parent | 6615c91e30b5bd8207460abef966f39307f9030c (diff) |
- bug 134 fixed : "Nb of images incorectly rendered in tool tip near
category in category menu". Deletion of a simple line break.
git-svn-id: http://piwigo.org/svn/branches/branch-1_4@830 68402e56-0260-453c-a942-63ccdbb3a9ee
-rw-r--r-- | include/functions_html.inc.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/functions_html.inc.php b/include/functions_html.inc.php index f30523c34..488e27800 100644 --- a/include/functions_html.inc.php +++ b/include/functions_html.inc.php @@ -403,8 +403,7 @@ function get_html_menu_category($categories) { $menu.= ' <span class="menuInfoCat" - title="'.$category['nb_images'].' - '.$lang['images_available'].'"> + title="'.$category['nb_images'].' '.$lang['images_available'].'"> ['.$category['nb_images'].'] </span> '.get_icon($category['date_last']); |