Skip to content

Commit 109e6c4

Browse files
author
Till Brehm
committed
Merge branch 'patch-4' into 'stable-3.1'
Fix #4339 See merge request !487
2 parents 56e1610 + 51285df commit 109e6c4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

interface/web/sites/web_vhost_domain_edit.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -339,7 +339,7 @@ function onShowEnd() {
339339
if($app->functions->intval($this->dataRecord["server_id"]) > 0) {
340340
// check if server is in client's servers or add it.
341341
$chk_sid = explode(',', $client['web_servers']);
342-
if(in_array($this->dataRecord["server_id"], $client['web_servers']) == false) {
342+
if(in_array($this->dataRecord["server_id"], $chk_sid) == false) {
343343
if($client['web_servers'] != '') $client['web_servers'] .= ',';
344344
$client['web_servers'] .= $app->functions->intval($this->dataRecord["server_id"]);
345345
}

0 commit comments

Comments
 (0)