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.
2 parents 56e1610 + 51285df commit 109e6c4Copy full SHA for 109e6c4
interface/web/sites/web_vhost_domain_edit.php
@@ -339,7 +339,7 @@ function onShowEnd() {
339
if($app->functions->intval($this->dataRecord["server_id"]) > 0) {
340
// check if server is in client's servers or add it.
341
$chk_sid = explode(',', $client['web_servers']);
342
- if(in_array($this->dataRecord["server_id"], $client['web_servers']) == false) {
+ if(in_array($this->dataRecord["server_id"], $chk_sid) == false) {
343
if($client['web_servers'] != '') $client['web_servers'] .= ',';
344
$client['web_servers'] .= $app->functions->intval($this->dataRecord["server_id"]);
345
}
0 commit comments