Ignore:
Timestamp:
Mar 9, 2007, 11:52:22 PM (17 years ago)
Author:
rub
Message:

Add DateTime on administration introduction page (Useful to help user on the forum, ...)
Move history configuration in a other tab.
Use translation on picture hint (Kb).
Show hint oh the menu text (not only on counter)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/functions_html.inc.php

    r1876 r1884  
    429429            );
    430430
     431    $title = get_display_images_count
     432                (
     433                  $category['nb_images'],
     434                  $category['count_images'],
     435                  $category['count_categories'],
     436                  false,
     437                  ' / '
     438                );
     439
    431440    $menu.= "\n".'<a href="'.$url.'"';
    432441    if ($selected_category!=null
     
    435444      $menu.= ' rel="up"';
    436445    }
    437     $menu.= '>'.$category['name'].'</a>';
     446    $menu.= ' title=" '.$title.'">'.$category['name'].'</a>';
    438447
    439448    if ( $category['count_images']>0 )
     
    443452      $menu.= ($category['nb_images'] > 0 ? "menuInfoCat"
    444453                                          : "menuInfoCatByChild").'"';
    445       $menu.= ' title="';
    446       $menu.= ' '.get_display_images_count
    447                   (
    448                     $category['nb_images'],
    449                     $category['count_images'],
    450                     $category['count_categories'],
    451                     false,
    452                     ' / '
    453                   ).'">';
     454      $menu.= ' title=" '.$title.'">';
    454455      // show total number of images
    455456      $menu.= '['.$category['count_images'].']';
Note: See TracChangeset for help on using the changeset viewer.