summaryrefslogtreecommitdiffstats
path: root/apps/files_encryption/templates/settings-personal.php
diff options
context:
space:
mode:
authorSam Tuke <samtuke@owncloud.com>2013-01-23 19:24:26 +0000
committerSam Tuke <samtuke@owncloud.com>2013-01-23 19:24:26 +0000
commit59ca312263d358c95b950266c678c71bf97716f3 (patch)
treede61cad1224cf80c4d370de78d85e701eff7f121 /apps/files_encryption/templates/settings-personal.php
parentcd832935e8b92a2461dedbd9eed92d2cd3337d92 (diff)
downloadnextcloud-server-59ca312263d358c95b950266c678c71bf97716f3.tar.gz
nextcloud-server-59ca312263d358c95b950266c678c71bf97716f3.zip
Work on util: findFiles() and encryptAll(); both close to working
Ecnryption unit tests are failing, recursion in filecache{}
Diffstat (limited to 'apps/files_encryption/templates/settings-personal.php')
-rw-r--r--apps/files_encryption/templates/settings-personal.php13
1 files changed, 1 insertions, 12 deletions
diff --git a/apps/files_encryption/templates/settings-personal.php b/apps/files_encryption/templates/settings-personal.php
index 1274bd3bb5c..c8144da5633 100644
--- a/apps/files_encryption/templates/settings-personal.php
+++ b/apps/files_encryption/templates/settings-personal.php
@@ -12,22 +12,11 @@
<input
type="radio"
name="encryption_mode"
- value="client"
- id='client_encryption'
- style="width:20px;"
- <?php if ($_['encryption_mode'] == 'client') echo "checked='checked'"?>
- />
- <?php echo $l->t('Client side encryption (most secure but makes it impossible to access your data from the web interface)'); ?>
- <br />
-
- <input
- type="radio"
- name="encryption_mode"
value="server"
id='server_encryption'
style="width:20px;" <?php if ($_['encryption_mode'] == 'server') echo "checked='checked'"?>
/>
- <?php echo $l->t('Server side encryption (allows you to access your files from the web interface and the desktop client)'); ?>
+ <?php echo $l->t('Server side encryption (allows you to access your files from the web interface)'); ?>
<br />
<input