[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Phpgroupware-cvs] property/inc class.socommon.inc.php,1.11
From: |
sigurdne |
Subject: |
[Phpgroupware-cvs] property/inc class.socommon.inc.php,1.11 |
Date: |
Thu, 29 Sep 2005 13:16:00 +0200 |
Update of property/inc
Modified Files:
Branch: MAIN
class.socommon.inc.php lines: +10 -1
Log Message:
Uncheck inactive user and list users status - whether 'Active' (A) or
'Inactive' (I) in Admin->User accounts.
====================================================
Index: property/inc/class.socommon.inc.php
diff -u property/inc/class.socommon.inc.php:1.10
property/inc/class.socommon.inc.php:1.11
--- property/inc/class.socommon.inc.php:1.10 Thu Sep 29 09:28:10 2005
+++ property/inc/class.socommon.inc.php Thu Sep 29 11:16:01 2005
@@ -103,7 +103,16 @@
}
}
}
+
unset($myaccounts);
+
+ $sql = "SELECT account_id FROM phpgw_accounts WHERE
account_status = 'I'";
+ $this->db->query($sql,__LINE__,__FILE__);
+ while ($this->db->next_record())
+ {
+ unset($accounts[$this->db->f('account_id')]);
+ }
+
if (isset($accounts) AND is_array($accounts))
{
foreach($accounts as $account_id)
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Phpgroupware-cvs] property/inc class.socommon.inc.php,1.11,
sigurdne <=