Changeset 831


Ignore:
Timestamp:
Aug 18, 2005, 11:31:21 PM (19 years ago)
Author:
plg
Message:
  • bug 133 fixed : "Nb of images incorectly rendered in "tool tip" near category in category menu". Correction reported (and improved) from branch 1.4
Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/doc/ChangeLog

    r825 r831  
     12005-08-18 Pierrick LE GALL
     2
     3        * bug 133 fixed : "Nb of images incorectly rendered in "tool tip"
     4        near category in category menu". Correction reported (and
     5        improved) from branch 1.4
     6
    172005-08-18 Pierrick LE GALL
    28
  • trunk/include/functions_html.inc.php

    r825 r831  
    395395
    396396    $menu.= '
    397            <a href="'.$url.'"
    398               title="'.$lang['hint_category'].'"
    399               class="'.$class.'">
    400              '.$category['name'].'
    401            </a>';
     397             <a href="'.$url.'" class="'.$class.'">'.$category['name'].'</a>';
    402398
    403399    if ($category['nb_images'] > 0)
    404400    {
    405401      $menu.= '
    406              <span class="menuInfoCat"
    407                    title="'.$category['nb_images'].'
    408                           '.$lang['images_available'].'">
    409              ['.$category['nb_images'].']
    410              </span>
    411              '.get_icon($category['date_last']);
    412     }
    413 
    414     $menu.= '</li>';
     402             <span class="menuInfoCat"';
     403      $menu.= ' title="'.$category['nb_images'];
     404      $menu.= ' '.$lang['images_available'].'">';
     405      $menu.= '['.$category['nb_images'].']';
     406      $menu.= '</span>';
     407      $menu.= get_icon($category['date_last']);
     408    }
     409
     410    $menu.= '
     411           </li>';
    415412  }
    416413 
Note: See TracChangeset for help on using the changeset viewer.