From f9d456720faf2398568b5c656ccd75f4ee1e8b8d Mon Sep 17 00:00:00 2001 From: DL6ER Date: Sun, 29 Apr 2018 17:30:42 +0200 Subject: [PATCH] Relax warnings. They are not needed any more. Signed-off-by: DL6ER --- scripts/pi-hole/js/settings.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/pi-hole/js/settings.js b/scripts/pi-hole/js/settings.js index 257ab7d4..7fa1227b 100644 --- a/scripts/pi-hole/js/settings.js +++ b/scripts/pi-hole/js/settings.js @@ -68,7 +68,7 @@ $(".confirm-restartdns").confirm({ }); $(".confirm-flushlogs").confirm({ - text: "By default, the log is flushed at the end of the day via cron, but a very large log file can slow down the Web interface, so flushing it can be useful. Note that your statistics will be reset and you lose the statistics up to this point. Are you sure you want to flush your logs?", + text: "Are you sure you want to flush your logs?", title: "Confirmation required", confirm(button) { $("#flushlogsform").submit(); @@ -85,7 +85,7 @@ $(".confirm-flushlogs").confirm({ }); $(".confirm-disablelogging").confirm({ - text: "Note that disabling query logging will render graphs on the web user interface useless. Are you sure you want to disable logging and flush your Pi-hole logs?", + text: "Are you sure you want to disable logging and flush your Pi-hole logs?", title: "Confirmation required", confirm(button) { $("#disablelogsform").submit(); @@ -102,7 +102,7 @@ $(".confirm-disablelogging").confirm({ }); $(".confirm-disablelogging-noflush").confirm({ - text: "Note that disabling query logging will render graphs on the web user interface useless after this point. Are you sure you want to disable logging?", + text: "Are you sure you want to disable logging?", title: "Confirmation required", confirm(button) { $("#disablelogsform-noflush").submit();