Ignore:
Timestamp:
Jan 30, 2008, 11:16:01 PM (17 years ago)
Author:
rub
Message:

Replace old use of $lang by l10n function.

Merge BSF 2200:2201 into branch-1_7

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/branch-1_7/admin/user_list.php

    r2177 r2202  
    178178
    179179$page['order_by_items'] = array(
    180   'id' => $lang['registration_date'],
    181   'username' => $lang['Username']
     180  'id' => l10n('registration_date'),
     181  'username' => l10n('Username')
    182182  );
    183183
    184184$page['direction_items'] = array(
    185   'asc' => $lang['ascending'],
    186   'desc' => $lang['descending']
     185  'asc' => l10n('ascending'),
     186  'desc' => l10n('descending')
    187187  );
    188188
     
    835835      'PROPERTIES' =>
    836836        (isset($local_user['enabled_high']) and ($local_user['enabled_high'] == 'true'))
    837         ? $lang['is_high_enabled'] : $lang['is_high_disabled']
     837        ? l10n('is_high_enabled') : l10n('is_high_disabled')
    838838      )
    839839    );
Note: See TracChangeset for help on using the changeset viewer.