Ignore:
Timestamp:
Oct 22, 2005, 11:53:12 AM (19 years ago)
Author:
plg
Message:
  • bug 173 fixed: due to phpBB user identifiers management, the method to find the next user identifier has changer to MAX+1.
  • improvement: information message when new user added
  • bug fixed: language item "Username" used instead of "login".
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/admin/user_list.php

    r880 r906  
    189189{
    190190  $page['errors'] = register_user($_POST['login'], $_POST['password'], '');
     191
     192  if (count($page['errors']) == 0)
     193  {
     194    array_push(
     195      $page['infos'],
     196      sprintf(
     197        l10n('user "%s" added'),
     198        $_POST['login']
     199        )
     200      );
     201  }
    191202}
    192203
     
    410421    'L_SUBMIT'=>$lang['submit'],
    411422    'L_STATUS'=>$lang['user_status'],
    412     'L_USERNAME' => $lang['login'],
    413423    'L_PASSWORD' => $lang['password'],
    414424    'L_EMAIL' => $lang['mail_address'],
Note: See TracChangeset for help on using the changeset viewer.