We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b488b5d commit 72600beCopy full SHA for 72600be
interface/web/sites/web_domain_edit.php
@@ -115,8 +115,8 @@ function onShowEnd() {
115
$clients = $app->db->queryAllRecords($sql);
116
$client_select = '<option value="'.$client['client_id'].'">'.$client['contact_name'].'</option>';
117
if(is_array($clients)) {
118
- foreach( $clients as $client) {
119
- $selected = @($client["groupid"] == $this->dataRecord["sys_groupid"])?'SELECTED':'';
+ foreach( $clients as $c) {
+ $selected = @($c["groupid"] == $this->dataRecord["sys_groupid"])?'SELECTED':'';
120
$client_select .= "<option value='$client[groupid]' $selected>$client[name]</option>\r\n";
121
}
122
0 commit comments