From ba9f03290898f304f70bc4826a650049c143508f Mon Sep 17 00:00:00 2001 From: tbrehm Date: Tue, 19 Jan 2010 15:57:20 +0000 Subject: [PATCH] Fixed: FS#958 - Resellers can't change clients websites IP --- interface/web/sites/web_domain_edit.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/interface/web/sites/web_domain_edit.php b/interface/web/sites/web_domain_edit.php index a3b36115c..5887be6e0 100644 --- a/interface/web/sites/web_domain_edit.php +++ b/interface/web/sites/web_domain_edit.php @@ -112,12 +112,12 @@ class page_action extends tform_actions { // Fill the client select field $sql = "SELECT groupid, name FROM sys_group, client WHERE sys_group.client_id = client.client_id AND client.parent_client_id = ".$client['client_id']." ORDER BY name"; - $clients = $app->db->queryAllRecords($sql); + $records = $app->db->queryAllRecords($sql); $client_select = ''; - if(is_array($clients)) { - foreach( $clients as $client) { - $selected = @($client["groupid"] == $this->dataRecord["sys_groupid"])?'SELECTED':''; - $client_select .= "\r\n"; + if(is_array($records)) { + foreach( $records as $rec) { + $selected = @($rec["groupid"] == $this->dataRecord["sys_groupid"])?'SELECTED':''; + $client_select .= "\r\n"; } } $app->tpl->setVar("client_group_id",$client_select); -- GitLab