Ignore:
Timestamp:
Feb 8, 2006, 2:17:07 AM (18 years ago)
Author:
rvelices
Message:
  • remake of Remote sites and Synchronize:
    • synchronization for remote and local sites are done by the same code
    • remote sites can update metadata now (not before) - bug 279
    • fixes bug 82: has_high column
  • improve feature 280: user sort by filename
  • fix path to template mimetypes icons
  • bug 284: session cookie lifetime, deletion on logout and corrected issue

when db upgrades were missing

File:
1 edited

Legend:

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

    r1022 r1029  
    322322function get_category_preferred_image_orders()
    323323{
    324   global $lang, $conf;
     324  global $conf;
    325325  return array(
    326326        array('Default', '', true),
    327         array($lang['best_rated_cat'],   'average_rate DESC', $conf['rate']),
    328         array($lang['most_visited_cat'], 'hit DESC', true),
    329         array($lang['Creation date'], 'date_creation DESC', true),
    330         array($lang['Availability date'], 'date_available DESC', true)
     327        array(get_lang('best_rated_cat'),   'average_rate DESC', $conf['rate']),
     328        array(get_lang('most_visited_cat'), 'hit DESC', true),
     329        array(get_lang('Creation date'), 'date_creation DESC', true),
     330        array(get_lang('Availability date'), 'date_available DESC', true),
     331        array(get_lang('File name'), 'file ASC', true)
    331332  );
    332333}
Note: See TracChangeset for help on using the changeset viewer.