diff options
author | Thomas Tanghus <thomas@tanghus.net> | 2012-06-13 19:03:34 +0200 |
---|---|---|
committer | Thomas Tanghus <thomas@tanghus.net> | 2012-06-13 19:03:34 +0200 |
commit | 613a122437a5fff0eb8c502719f8203ea0a61e81 (patch) | |
tree | 63b9971200f08d181a87ab290ff46e25dfadccd8 | |
parent | d33d599b1b05d7c267fed48cabe63461cd62db9f (diff) | |
download | nextcloud-server-613a122437a5fff0eb8c502719f8203ea0a61e81.tar.gz nextcloud-server-613a122437a5fff0eb8c502719f8203ea0a61e81.zip |
Remove check for encryption.
-rw-r--r-- | apps/contacts/templates/part.importaddressbook.php | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/apps/contacts/templates/part.importaddressbook.php b/apps/contacts/templates/part.importaddressbook.php index 0e2956ddaf4..01f8dd77d0a 100644 --- a/apps/contacts/templates/part.importaddressbook.php +++ b/apps/contacts/templates/part.importaddressbook.php @@ -7,10 +7,6 @@ */ ?> <td id="importaddressbook_dialog" colspan="6"> -<?php -if(OCP\App::isEnabled('files_encryption')) { - echo '<strong>'.$l->t('Currently this import function doesn\'t work while encryption is enabled.<br />Please upload your VCF file with the file manager and click on it to import.').'</strong>'; -} else { ?> <table> <tr> <th><?php echo $l->t('Select address book to import to:') ?></th> @@ -33,7 +29,6 @@ if(OCP\App::isEnabled('files_encryption')) { <input id="close_button" style="float: left;" type="button" onclick="Contacts.UI.Addressbooks.cancel(this);" value="<?php echo $l->t("Cancel"); ?>"> <iframe name="import_upload_target" id='import_upload_target' src=""></iframe> -<?php } ?> </td> <script type="text/javascript"> $(document).ready(function(){ |