Marius Cramer
2015-04-15 7ee336c7ccb5f8d35b8eb05cf5e812a42154cbc2
- ported some patches
8 files modified
26 ■■■■■ changed files
interface/web/dns/list/dns_slave.list.php 3 ●●●● patch | view | raw | blame | history
interface/web/dns/list/dns_soa.list.php 3 ●●●● patch | view | raw | blame | history
interface/web/mail/list/mail_domain.list.php 3 ●●●● patch | view | raw | blame | history
interface/web/sites/list/database.list.php 3 ●●●● patch | view | raw | blame | history
interface/web/sites/list/web_vhost_domain.list.php 3 ●●●● patch | view | raw | blame | history
interface/web/themes/default/templates/sidenav.tpl.htm 4 ●●●● patch | view | raw | blame | history
server/lib/classes/cron.d/300-quota_notify.inc.php 5 ●●●●● patch | view | raw | blame | history
server/lib/classes/cron.d/500-backup.inc.php 2 ●●● patch | view | raw | blame | history
interface/web/dns/list/dns_slave.list.php
@@ -83,7 +83,8 @@
        'prefix' => "",
        'suffix' => "",
        'datasource' => array (  'type' => 'SQL',
            'querystring' => 'SELECT groupid, name FROM sys_group WHERE groupid != 1 ORDER BY name',
            //'querystring' => 'SELECT groupid, name FROM sys_group WHERE groupid != 1 ORDER BY name',
            'querystring' => "SELECT sys_group.groupid,CONCAT(IF(client.company_name != '', CONCAT(client.company_name, ' :: '), ''), IF(client.contact_firstname != '', CONCAT(client.contact_firstname, ' '), ''), client.contact_name, ' (', client.username, IF(client.customer_no != '', CONCAT(', ', client.customer_no), ''), ')') as name FROM sys_group, client WHERE sys_group.groupid != 1 AND sys_group.client_id = client.client_id ORDER BY client.company_name, client.contact_name",
            'keyfield'=> 'groupid',
            'valuefield'=> 'name'
        ),
interface/web/dns/list/dns_soa.list.php
@@ -83,7 +83,8 @@
        'prefix' => "",
        'suffix' => "",
        'datasource' => array (  'type' => 'SQL',
            'querystring' => 'SELECT groupid, name FROM sys_group WHERE groupid != 1 ORDER BY name',
            //'querystring' => 'SELECT groupid, name FROM sys_group WHERE groupid != 1 ORDER BY name',
            'querystring' => "SELECT sys_group.groupid,CONCAT(IF(client.company_name != '', CONCAT(client.company_name, ' :: '), ''), IF(client.contact_firstname != '', CONCAT(client.contact_firstname, ' '), ''), client.contact_name, ' (', client.username, IF(client.customer_no != '', CONCAT(', ', client.customer_no), ''), ')') as name FROM sys_group, client WHERE sys_group.groupid != 1 AND sys_group.client_id = client.client_id ORDER BY client.company_name, client.contact_name",
            'keyfield'=> 'groupid',
            'valuefield'=> 'name'
        ),
interface/web/mail/list/mail_domain.list.php
@@ -70,7 +70,8 @@
        'prefix' => "",
        'suffix' => "",
        'datasource' => array (  'type' => 'SQL',
            'querystring' => 'SELECT groupid, name FROM sys_group WHERE groupid != 1 ORDER BY name',
            //'querystring' => 'SELECT groupid, name FROM sys_group WHERE groupid != 1 ORDER BY name',
            'querystring' => "SELECT sys_group.groupid,CONCAT(IF(client.company_name != '', CONCAT(client.company_name, ' :: '), ''), IF(client.contact_firstname != '', CONCAT(client.contact_firstname, ' '), ''), client.contact_name, ' (', client.username, IF(client.customer_no != '', CONCAT(', ', client.customer_no), ''), ')') as name FROM sys_group, client WHERE sys_group.groupid != 1 AND sys_group.client_id = client.client_id ORDER BY client.company_name, client.contact_name",
            'keyfield'=> 'groupid',
            'valuefield'=> 'name'
        ),
interface/web/sites/list/database.list.php
@@ -91,7 +91,8 @@
        'prefix' => "",
        'suffix' => "",
        'datasource' => array (  'type' => 'SQL',
            'querystring' => 'SELECT groupid, name FROM sys_group WHERE groupid != 1 ORDER BY name',
            //'querystring' => 'SELECT groupid, name FROM sys_group WHERE groupid != 1 ORDER BY name',
            'querystring' => "SELECT sys_group.groupid,CONCAT(IF(client.company_name != '', CONCAT(client.company_name, ' :: '), ''), IF(client.contact_firstname != '', CONCAT(client.contact_firstname, ' '), ''), client.contact_name, ' (', client.username, IF(client.customer_no != '', CONCAT(', ', client.customer_no), ''), ')') as name FROM sys_group, client WHERE sys_group.groupid != 1 AND sys_group.client_id = client.client_id ORDER BY client.company_name, client.contact_name",
            'keyfield'=> 'groupid',
            'valuefield'=> 'name'
        ),
interface/web/sites/list/web_vhost_domain.list.php
@@ -88,7 +88,8 @@
        'prefix' => "",
        'suffix' => "",
        'datasource' => array (  'type' => 'SQL',
            'querystring' => 'SELECT groupid, name FROM sys_group WHERE groupid != 1 ORDER BY name',
            //'querystring' => 'SELECT groupid, name FROM sys_group WHERE groupid != 1 ORDER BY name',
            'querystring' => "SELECT sys_group.groupid,CONCAT(IF(client.company_name != '', CONCAT(client.company_name, ' :: '), ''), IF(client.contact_firstname != '', CONCAT(client.contact_firstname, ' '), ''), client.contact_name, ' (', client.username, IF(client.customer_no != '', CONCAT(', ', client.customer_no), ''), ')') as name FROM sys_group, client WHERE sys_group.groupid != 1 AND sys_group.client_id = client.client_id ORDER BY client.company_name, client.contact_name",
            'keyfield'=> 'groupid',
            'valuefield'=> 'name'
        ),
interface/web/themes/default/templates/sidenav.tpl.htm
@@ -9,13 +9,13 @@
            <tmpl_else>
                <a href="#" data-load-content="<tmpl_var name='link'>">
            </tmpl_if>
        <tmpl_else>
            <a href="#">
        </tmpl_if>
          <div>
            <strong><tmpl_var name="title"></strong>
          </div>
        <tmpl_if name="link">
        </a>
        </tmpl_if>
      </li>
      </tmpl_loop>
    </ul>
server/lib/classes/cron.d/300-quota_notify.inc.php
@@ -49,6 +49,11 @@
    public function onRunJob() {
        global $app, $conf;
        /* used for all monitor cronjobs */
        $app->load('monitor_tools');
        $this->_tools = new monitor_tools();
        /* end global section for monitor cronjobs */
        //######################################################################################################
        // enforce traffic quota (run only on the "master-server")
server/lib/classes/cron.d/500-backup.inc.php
@@ -228,7 +228,7 @@
                            $db_name = $rec['database_name'];
                            $db_backup_file = 'db_'.$db_name.'_'.date('Y-m-d_H-i').'.sql';
                            //$command = "mysqldump -h '".escapeshellcmd($clientdb_host)."' -u '".escapeshellcmd($clientdb_user)."' -p'".escapeshellcmd($clientdb_password)."' -c --add-drop-table --create-options --quick --result-file='".$db_backup_dir.'/'.$db_backup_file."' '".$db_name."'";
                            $command = "mysqldump -h ".escapeshellarg($clientdb_host)." -u ".escapeshellarg($clientdb_user)." -p".escapeshellarg($clientdb_password)." -c --add-drop-table --create-options --quick --result-file='".$db_backup_dir.'/'.$db_backup_file."' '".$db_name."'";
                            $command = "mysqldump -h ".escapeshellarg($clientdb_host)." -u ".escapeshellarg($clientdb_user)." -p".escapeshellarg($clientdb_password)." -c --add-drop-table --create-options --quick --max_allowed_packet=512M --result-file='".$db_backup_dir.'/'.$db_backup_file."' '".$db_name."'";
                            exec($command, $tmp_output, $retval);
                            //* Compress the backup with gzip