From 49cdbe8c8ff740a9389f77a8481eb0143c5df7af Mon Sep 17 00:00:00 2001 From: Bernard `Guyzmo` Pratz Date: Thu, 14 Jan 2016 20:39:23 +0000 Subject: [PATCH] fix backup-location lines, by switching it from id to class --- management/templates/system-backup.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/management/templates/system-backup.html b/management/templates/system-backup.html index 3be0e54b..e7dc0620 100644 --- a/management/templates/system-backup.html +++ b/management/templates/system-backup.html @@ -24,7 +24,7 @@
-

Backups are stored on this machine’s own hard disk. You are responsible for periodically using SFTP (FTP over SSH) to copy the backup files from to a safe location. These files are encrypted, so they are safe to store anywhere.

+

Backups are stored on this machine’s own hard disk. You are responsible for periodically using SFTP (FTP over SSH) to copy the backup files from to a safe location. These files are encrypted, so they are safe to store anywhere.

Separately copy the encryption password from to a safe and secure location. You will need this file to decrypt backup files.

@@ -33,7 +33,7 @@

Backups synced to a remote machine using rsync over SSH, with local - copies in . These files are encrypted, so + copies in . These files are encrypted, so they are safe to store anywhere.

Separately copy the encryption password from to a safe and secure location. You will need this file to decrypt backup files.

@@ -205,8 +205,8 @@ function show_custom_backup() { $("#backup-target-user").val(r.target_user); $("#backup-target-pass").val(r.target_pass); $("#min-age").val(r.min_age_in_days); - $('#backup-location').text(r.file_target_directory); - $('.backup-encpassword-file').text(r.enc_pw_file); + $(".backup-location").text(r.file_target_directory); + $(".backup-encpassword-file").text(r.enc_pw_file); if (r.target == "file://" + r.file_target_directory) { $("#backup-target-type").val("local");