The latest cvs version does not allow admins to add new users, it always shows the users list.
I got it work by setting the empty $op to arg(3) in the user_admin() function:

function user_admin() {
  $edit = isset($_POST['edit']) ? $_POST['edit'] : '';
  $op = isset($_POST['op']) ? $_POST['op'] : '';

  if (empty($op)) {
    $op = arg(3);
  }
.................
CommentFileSizeAuthor
#2 user.module_56.patch3.14 KBparanojik
#1 user.module_55.patch501 bytesparanojik
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

paranojik’s picture

Status: Active » Needs review
FileSize
501 bytes

Here's the patch. We should expect more problems like this one ( caused by the administration page rework )...

paranojik’s picture

FileSize
3.14 KB

Maybe this is an even better solution... It also fixes searching users.

Dries’s picture

Status: Needs review » Fixed

Thanks! Committed to CVS HEAD.

Anonymous’s picture

Status: Fixed » Closed (fixed)