tbrehm
2009-09-17 72600be199be852dd171ddd160ccc6a219ae5d1b
Fixed: FS#884 - Reseller and Client can't choose Server IP!
1 files modified
4 ■■■■ changed files
interface/web/sites/web_domain_edit.php 4 ●●●● patch | view | raw | blame | history
interface/web/sites/web_domain_edit.php
@@ -115,8 +115,8 @@
            $clients = $app->db->queryAllRecords($sql);
            $client_select = '<option value="'.$client['client_id'].'">'.$client['contact_name'].'</option>';
            if(is_array($clients)) {
                foreach( $clients as $client) {
                    $selected = @($client["groupid"] == $this->dataRecord["sys_groupid"])?'SELECTED':'';
                foreach( $clients as $c) {
                    $selected = @($c["groupid"] == $this->dataRecord["sys_groupid"])?'SELECTED':'';
                    $client_select .= "<option value='$client[groupid]' $selected>$client[name]</option>\r\n";
                }
            }