Skip to content
Snippets Groups Projects
Commit 2f337b07 authored by Till's avatar Till
Browse files

Fix issue that PHP version of a site gets altered when an admin edits the site...

Fix issue that PHP version of a site gets altered when an admin edits the site when domain limit mode is active.
parent c29ebd09
No related branches found
No related tags found
No related merge requests found
...@@ -66,6 +66,9 @@ ...@@ -66,6 +66,9 @@
</div> </div>
</tmpl_unless> </tmpl_unless>
</tmpl_if> </tmpl_if>
<tmpl_if name="domain_option">
<input type="hidden" id="client_group_id" name="client_group_id" value="{tmpl_var name='client_group_id_value'}" />
</tmpl_if>
<div class="form-group"> <div class="form-group">
<label for="ip_address" class="col-sm-3 control-label">{tmpl_var name='ip_address_txt'}</label> <label for="ip_address" class="col-sm-3 control-label">{tmpl_var name='ip_address_txt'}</label>
<div class="col-sm-9"><select name="ip_address" id="ip_address" class="form-control"> <div class="col-sm-9"><select name="ip_address" id="ip_address" class="form-control">
......
...@@ -725,6 +725,12 @@ class page_action extends tform_actions { ...@@ -725,6 +725,12 @@ class page_action extends tform_actions {
// remove the parent domain part of the domain name before we show it in the text field. // remove the parent domain part of the domain name before we show it in the text field.
if($this->dataRecord["type"] == 'vhostsubdomain') $this->dataRecord["domain"] = str_replace('.'.$selected_domain, '', $this->dataRecord["domain"]); if($this->dataRecord["type"] == 'vhostsubdomain') $this->dataRecord["domain"] = str_replace('.'.$selected_domain, '', $this->dataRecord["domain"]);
// We have to set the client group id value as the client select field is hidden in this mode
if($is_admin) {
$app->tpl->setVar("client_group_id_value", $this->dataRecord["sys_groupid"], true);
} else {
$app->tpl->setVar("client_group_id_value", $_SESSION["s"]["user"]["default_group"], true);
}
} else { } else {
// remove the parent domain part of the domain name before we show it in the text field. // remove the parent domain part of the domain name before we show it in the text field.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment