summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPliablePixels <pliablepixels@gmail.com>2015-06-27 16:10:41 -0400
committerPliablePixels <pliablepixels@gmail.com>2015-06-27 16:10:41 -0400
commit89cd2015ebfcb08803c2ff6e2f9384a86f4f1ecd (patch)
tree83ec68e2775fd5dde4b77a1b05b8adf02b8a2172
parent52b6aef1eff1377ec32f119ccea57df646b33345 (diff)
updated sensitive information dialog box
-rw-r--r--www/js/LogCtrl.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/www/js/LogCtrl.js b/www/js/LogCtrl.js
index a4141930..d2ff88d8 100644
--- a/www/js/LogCtrl.js
+++ b/www/js/LogCtrl.js
@@ -14,7 +14,7 @@ angular.module('zmApp.controllers').controller('zmApp.LogCtrl', ['$scope', '$roo
$scope.sendEmail = function (logstring) {
$ionicPopup.confirm({
title: 'Sensitive Information',
- template: 'zmNinja tries its best to remove sensitive data like urls and passwords, but it is eventually your responsibility to make sure there is no sensitive data in the logs. If you are not sure, please click Cancel'
+ template: 'zmNinja will modify the logs when creating the email to remove sensitive data like urls and passwords. However it is eventually <b>your responsibility</b> to make sure there is no sensitive data in the logs. Please make sure you review and edit the logs in the next screen before you send.'
})
.then(function (res) {
if (res) sendEmailReally(logstring);
@@ -46,7 +46,7 @@ angular.module('zmApp.controllers').controller('zmApp.LogCtrl', ['$scope', '$roo
logstring = logstring.replace(re3, "<server>");
var email = {
- to: '',
+ to: 'pliablepixels+zmNinja@gmail.com',
subject: 'zmNinja Logs',
body: logstring,
isHtml: false