From 7c8bd0f7abfad4cfbf565c84e33099103a99e97d Mon Sep 17 00:00:00 2001
From: Chris Smith <chris@jalakai.co.uk>
Date: Wed, 20 Jun 2007 18:31:48 +0200
Subject: [PATCH] Code corrections in inc/auth/plain.class.php deleteUser()
 method

darcs-hash:20070620163148-d26fc-f25224e3a9757c298461073386c854122ffb37c2.gz
---
 inc/auth/plain.class.php | 4 ++--
 1 file 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;
     }
 
-- 
GitLab