| 260 | | $db->query("insert into sub_domaines (compte,domaine,sub,valeur,type) values ('$cuid','$domain','','http://www.".$domain."',1);"); |
|---|
| 261 | | $db->query("insert into sub_domaines (compte,domaine,sub,valeur,type) values ('$cuid','$domain','www','/',0);"); |
|---|
| 262 | | $db->query("insert into sub_domaines (compte,domaine,sub,valeur,type) values ('$cuid','$domain','mail','',3);"); |
|---|
| | 260 | $this->set_sub_domain($domain, '', $this->type_url, 'add', 'http://www.'.$domain); |
|---|
| | 261 | $this->set_sub_domain($domain, 'www', $this->type_local, 'add', '/'); |
|---|
| | 262 | $this->set_sub_domain($domain, 'mail', $this->type_webmail, 'add', ''); |
|---|