From b2427590f9ca5d13f6bcc96037e34bb1951e5018 Mon Sep 17 00:00:00 2001 From: skeeter Date: Sat, 10 Feb 2001 03:56:28 +0000 Subject: [PATCH] small fix for constructor --- phpgwapi/inc/class.accounts_shared.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpgwapi/inc/class.accounts_shared.inc.php b/phpgwapi/inc/class.accounts_shared.inc.php index 5cd0fc96c8..a067dfbf65 100644 --- a/phpgwapi/inc/class.accounts_shared.inc.php +++ b/phpgwapi/inc/class.accounts_shared.inc.php @@ -34,7 +34,7 @@ { global $phpgw, $phpgw_info; $this->db = $phpgw->db; - if ($account_id == False){ $this->account_id = $account_id; } + if ($account_id != False){ $this->account_id = $account_id; } } function read()