From e1cdaebca2addd940a8b8447e8db8baf96238a91 Mon Sep 17 00:00:00 2001
From: tbrehm <t.brehm@ispconfig.org>
Date: Sun, 19 Sep 2010 12:21:30 +0000
Subject: [PATCH] Fixed a bug in directory creation code of the backup
 function.

---
 server/cron_daily.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/server/cron_daily.php b/server/cron_daily.php
index f311e75b84..8b90e8edd4 100644
--- a/server/cron_daily.php
+++ b/server/cron_daily.php
@@ -388,7 +388,7 @@ $backup_dir = $server_config['backup_dir'];
 if($backup_dir != '') {
 	
 	if(!is_dir($backup_dir)) {
-		mkdir(escapeshellarg($backup_dir), 0750, true);
+		mkdir(escapeshellcmd($backup_dir), 0750, true);
 	}
 	
 	$sql = "SELECT * FROM web_domain WHERE type = 'vhost'";
-- 
GitLab