kittykats

This commit is contained in:
Michael 2017-03-26 18:40:05 -04:00
parent f2ab2e93fb
commit fd5302fca4

View file

@ -119,8 +119,8 @@ Unlike previous ShiftOS site revamps, your account got migrated over. However, t
if (!System.IO.Directory.Exists(backupServerDir))
System.IO.Directory.CreateDirectory(backupServerDir);
string backupUrl = backupDir.Remove(0, 1) + "/ShiftOS-" + DateTime.Now.ToString().Replace("/", "-") + ".zip";
string backupname = Path.Combine(backupServerDir, "ShiftOS-" + DateTime.Now.ToString().Replace("/", "-") + ".zip");
string backupUrl = backupDir.Remove(0, 1) + "/ShiftOS-" + DateTime.Now.ToString().Replace("/", "-").Replace(":", "-") + ".zip";
string backupname = Path.Combine(backupServerDir, "ShiftOS-" + DateTime.Now.ToString().Replace("/", "-").Replace(":", "-") + ".zip");
try
{