tbrehm
2009-07-05 d77bc7ae3817e9965e1f5d76b3f32dbe0f29d7da
interface/web/sites/web_domain_edit.php
@@ -185,6 +185,14 @@
         
      }
      
      if($this->id > 0) {
         //* we are editing a existing record
         $app->tpl->setVar("edit_disabled", 1);
         $app->tpl->setVar("server_id_value", $this->dataRecord["server_id"]);
      } else {
         $app->tpl->setVar("edit_disabled", 0);
      }
      parent::onShowEnd();
   }
   
@@ -286,6 +294,16 @@
            }
            unset($rec);
         }
      //* If the user is neither admin nor reseller
      } else {
         //* We do not allow users to change a domain which has been created by the admin
         $rec = $app->db->queryOneRecord("SELECT domain from web_domain WHERE domain_id = ".$this->id);
         if(isset($this->dataRecord["domain"]) && $rec['domain'] != $this->dataRecord["domain"] && $app->tform->checkPerm($this->id,'u')) {
            //* Add a error message and switch back to old server
            $app->tform->errorMessage .= $app->lng('The Domain can not be changed. Please ask your Administrator if you want to change the domain name.');
            $this->dataRecord["domain"] = $rec['domain'];
         }
         unset($rec);
      }
      
      //* Check that all fields for the SSL cert creation are filled
@@ -334,9 +352,10 @@
         // Set the values for document_root, system_user and system_group
         $system_user = 'web'.$this->id;
         $system_group = 'client'.$client_id;
         $document_root = str_replace("[client_id]",$client_id,$document_root);
         //$document_root = str_replace("[client_id]",$client_id,$document_root);
      
         $sql = "UPDATE web_domain SET system_user = '$system_user', system_group = '$system_group', document_root = '$document_root' WHERE domain_id = ".$this->id;
         // $sql = "UPDATE web_domain SET system_user = '$system_user', system_group = '$system_group', document_root = '$document_root' WHERE domain_id = ".$this->id;
         $sql = "UPDATE web_domain SET system_user = '$system_user', system_group = '$system_group' WHERE domain_id = ".$this->id;
         $app->db->query($sql);
      }