summaryrefslogtreecommitdiff
path: root/www/js/LogCtrl.js
diff options
context:
space:
mode:
authorArjun Roychowdhury <pliablepixels@gmail.com>2015-11-22 08:24:54 -0500
committerArjun Roychowdhury <pliablepixels@gmail.com>2015-11-22 08:24:54 -0500
commitc590ca90128aaa3c72da9b7bfaf15615f447b5f3 (patch)
tree84fa891a2f39239da277367124560bdc3196f3f1 /www/js/LogCtrl.js
parent5355e0589878bcb8323489e5a1e397960e6b3537 (diff)
changed log privacy message to reflect both download and email cases
Former-commit-id: 8d7bea626112189ce25767196d0b87f7d944c67c
Diffstat (limited to 'www/js/LogCtrl.js')
-rw-r--r--www/js/LogCtrl.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/www/js/LogCtrl.js b/www/js/LogCtrl.js
index ac027ccc..a11f14f8 100644
--- a/www/js/LogCtrl.js
+++ b/www/js/LogCtrl.js
@@ -75,7 +75,7 @@ angular.module('zmApp.controllers').controller('zmApp.LogCtrl', ['$scope', '$roo
$scope.sendEmail = function (logstring) {
$ionicPopup.confirm({
title: 'Sensitive Information',
- 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.'
+ template: 'zmNinja will modify the logs when creating the final output 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 before you send it out.'
})
.then(function (res) {
if (res) sendEmailReally(logstring);