Ignore:
Timestamp:
Dec 18, 2004, 11:05:30 PM (19 years ago)
Author:
plg
Message:
  • bug fixed : in admin/cat_list, next_rank cant' be calculted and query to count sub-categories per sub-categories became false if no sub-categories
  • virtual association come back in admin/infos_images (not only in admin/picture_modify)
  • check_favorites function in admin section becomes check_user_favorites in public section : favorites are checked when user tries to display his favorites. Function was optimized.
  • in function update_category, wrap of long queries due to many categories to update at the same time
  • typo fixed in description of paginate_pages_around configuration parameter
  • bug fixed in new navigation bar : no separation pipe was displayed between next and last when the page displayed was the last
  • sessions.expiration changed of type from int to datetime (a lot easier to read)
  • sessions.ip removed : IP address is no longer used to verify session
  • typo fixed in language/en_UK.iso-8859-1/admin.lang.php on editcat_lock_info language item
File:
1 edited

Legend:

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

    r645 r647  
    159159      $navbar.= $lang['next_page'];
    160160    }
     161   
     162    $navbar.= ' | ';
    161163    // link to last page ?
    162164    if ($cur_page != $maximum)
    163165    {
    164166      $temp_start = ($maximum - 1) * $nb_element_page;
    165       $navbar.= ' | ';
    166167      $navbar.= '<a href="';
    167168      $navbar.= add_session_id($url.'&amp;start='.$temp_start);
Note: See TracChangeset for help on using the changeset viewer.