summaryrefslogtreecommitdiff
path: root/inc/auth
diff options
context:
space:
mode:
authorChris Smith <chris@jalakai.co.uk>2007-06-20 18:31:48 +0200
committerChris Smith <chris@jalakai.co.uk>2007-06-20 18:31:48 +0200
commit7c8bd0f7abfad4cfbf565c84e33099103a99e97d (patch)
tree25266c84a9841efe578ea8742ef0762526055d92 /inc/auth
parent45e147cc5cc1cc1c72e6277041198e36d5cfcce8 (diff)
downloadrpg-7c8bd0f7abfad4cfbf565c84e33099103a99e97d.tar.gz
rpg-7c8bd0f7abfad4cfbf565c84e33099103a99e97d.tar.bz2
Code corrections in inc/auth/plain.class.php deleteUser() method
darcs-hash:20070620163148-d26fc-f25224e3a9757c298461073386c854122ffb37c2.gz
Diffstat (limited to 'inc/auth')
-rw-r--r--inc/auth/plain.class.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/inc/auth/plain.class.php b/inc/auth/plain.class.php
index 87b423b16..156e2e5c8 100644
--- a/inc/auth/plain.class.php
+++ b/inc/auth/plain.class.php
@@ -199,9 +199,9 @@ class auth_plain extends auth_basic {
}
// problem deleting, reload the user list and count the difference
- $count = count($this->users());
+ $count = count($this->users);
$this->_loadUserData();
- $count -= $count($this->users());
+ $count -= count($this->users);
return $count;
}