Skip to content
Snippets Groups Projects
Commit 7c8bd0f7 authored by Chris Smith's avatar Chris Smith
Browse files

Code corrections in inc/auth/plain.class.php deleteUser() method

darcs-hash:20070620163148-d26fc-f25224e3a9757c298461073386c854122ffb37c2.gz
parent 45e147cc
No related branches found
No related tags found
No related merge requests found
...@@ -199,9 +199,9 @@ class auth_plain extends auth_basic { ...@@ -199,9 +199,9 @@ class auth_plain extends auth_basic {
} }
// problem deleting, reload the user list and count the difference // problem deleting, reload the user list and count the difference
$count = count($this->users()); $count = count($this->users);
$this->_loadUserData(); $this->_loadUserData();
$count -= $count($this->users()); $count -= count($this->users);
return $count; return $count;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment