Ignore:
Timestamp:
Sep 12, 2007, 6:01:54 AM (17 years ago)
Author:
rvelices
Message:

merge -r2088 from branch-1_7 to trunk

  • urls used in http redirections must not be html escaped (eg. should use & instead of &)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/admin/user_list.php

    r2084 r2089  
    441441    PHPWG_ROOT_PATH.
    442442    'admin.php'.
    443     get_query_string_diff(
    444       array(
    445         'start'
    446         )
    447       )
     443    get_query_string_diff(array(), false)
    448444    );
    449445}
     
    835831
    836832  $properties = array();
     833  $properties[] = l10n( sprintf('Level %d', $local_user['level']) );
    837834  $properties[] =
    838835    (isset($local_user['enabled_high']) and ($local_user['enabled_high'] == 'true'))
    839836        ? $lang['is_high_enabled'] : $lang['is_high_disabled'];
    840 
    841   $properties[] = l10n( sprintf('Level %d', $local_user['level']) );
    842837
    843838  $template->assign_block_vars(
     
    860855      'GROUPS' => $groups_string,
    861856      'PROPERTIES' => implode( ',', $properties),
    862 
    863857      )
    864858    );
Note: See TracChangeset for help on using the changeset viewer.