summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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;
}