diff --git a/interface/web/sites/web_domain_edit.php b/interface/web/sites/web_domain_edit.php index ec422d74ad11ff559354324f70551f39810b3445..1874b446e8a62eef39c3e7042858179253a63a51 100644 --- a/interface/web/sites/web_domain_edit.php +++ b/interface/web/sites/web_domain_edit.php @@ -442,6 +442,7 @@ class page_action extends tform_actions { $app->db->query($sql); } if($web_rec['php_open_basedir'] == '') { + $document_root = $app->db->quote(str_replace("[client_id]",$client_id,$document_root)); $php_open_basedir = str_replace("[website_path]",$document_root,$web_config["php_open_basedir"]); $php_open_basedir = $app->db->quote(str_replace("[website_domain]",$web_rec['domain'],$php_open_basedir)); $sql = "UPDATE web_domain SET php_open_basedir = '$php_open_basedir' WHERE domain_id = ".$this->id;