Marius Cramer
2014-03-10 e4bc4a93314686fede39336d5ecddb900e0a5151
 Merge branch 'master' into 'master'

Vhostalias additions

added missing part for vhostalias in backup-cron
1 files modified
2 ■■■ changed files
server/lib/classes/cron.d/500-backup.inc.php 2 ●●● patch | view | raw | blame | history
server/lib/classes/cron.d/500-backup.inc.php
@@ -85,7 +85,7 @@
            if($run_backups){
                //* backup only active domains
                $sql = "SELECT * FROM web_domain WHERE server_id = '".$conf['server_id']."' AND (type = 'vhost' OR type = 'vhostsubdomain') AND active = 'y'";
                $sql = "SELECT * FROM web_domain WHERE server_id = '".$conf['server_id']."' AND (type = 'vhost' OR type = 'vhostsubdomain' OR type = 'vhostalias') AND active = 'y'";
                $records = $app->db->queryAllRecords($sql);
                if(is_array($records)) {
                    foreach($records as $rec) {