tbrehm
2008-09-14 f25b9e27bab0ecb3982df89a8cb65d29938537fb

3 files modified
6 ■■■■■ changed files
interface/web/sites/form/web_domain.tform.php 2 ●●●●● patch | view | raw | blame | history
interface/web/sites/templates/web_domain_advanced.htm 2 ●●●●● patch | view | raw | blame | history
interface/web/sites/web_domain_edit.php 2 ●●●●● patch | view | raw | blame | history
interface/web/sites/form/web_domain.tform.php
@@ -318,7 +318,6 @@
    ##################################
    # Begin Datatable fields
    ##################################
    /*
        'document_root' => array (
            'datatype'    => 'VARCHAR',
            'formtype'    => 'TEXT',
@@ -352,7 +351,6 @@
            'width'        => '30',
            'maxlength'    => '255'
        ),
        */
        'apache_directives' => array (
            'datatype'    => 'TEXT',
            'formtype'    => 'TEXT',
interface/web/sites/templates/web_domain_advanced.htm
@@ -1,5 +1,4 @@
<table width="500" border="0" cellspacing="0" cellpadding="2">
  <!--
  <tr>
    <td class="frmText11">{tmpl_var name='document_root_txt'}:</td>
    <td class="frmText11"><input name="document_root" type="text" class="text" value="{tmpl_var name='document_root'}" size="30" maxlength="255"></td>
@@ -12,7 +11,6 @@
    <td class="frmText11">{tmpl_var name='system_group_txt'}:</td>
    <td class="frmText11"><input name="system_group" type="text" class="text" value="{tmpl_var name='system_group'}" size="30" maxlength="255"></td>
  </tr>
  -->
  <tr>
    <td class="frmText11">{tmpl_var name='apache_directives_txt'}:</td>
    <td class="frmText11"><textarea name="apache_directives" class="text" rows="10" cols="30">{tmpl_var name='apache_directives'}</textarea></td>
interface/web/sites/web_domain_edit.php
@@ -273,6 +273,7 @@
            $client_id = intval($client["client_id"]);
        }
        
        /*
        // Set the values for document_root, system_user and system_group
        $system_user = 'web'.$this->id;
        $system_group = 'client'.$client_id;
@@ -280,6 +281,7 @@
        
        $sql = "UPDATE web_domain SET system_user = '$system_user', system_group = '$system_group', document_root = '$document_root' WHERE domain_id = ".$this->id;
        $app->db->query($sql);
        */
        
    }