diff options
author | Björn Schießle <schiessle@owncloud.com> | 2012-09-25 12:01:09 +0200 |
---|---|---|
committer | Björn Schießle <schiessle@owncloud.com> | 2012-09-25 12:01:09 +0200 |
commit | 90a1bd5721a2106ecbddbc2c7a7d4160f0fa7fea (patch) | |
tree | da72e73d8fc1be7eea8f10da07df09a43805af34 /apps/files_external/templates | |
parent | ecb90d72f315e965e7b0d723f6d90f71cb6214ec (diff) | |
download | nextcloud-server-90a1bd5721a2106ecbddbc2c7a7d4160f0fa7fea.tar.gz nextcloud-server-90a1bd5721a2106ecbddbc2c7a7d4160f0fa7fea.zip |
seperate the form to set up the mount points and the form to upload ssl certificates
Diffstat (limited to 'apps/files_external/templates')
-rw-r--r-- | apps/files_external/templates/settings.php | 26 |
1 files changed, 15 insertions, 11 deletions
diff --git a/apps/files_external/templates/settings.php b/apps/files_external/templates/settings.php index c44b09b180f..367ce2bc03e 100644 --- a/apps/files_external/templates/settings.php +++ b/apps/files_external/templates/settings.php @@ -1,4 +1,4 @@ -<form id="files_external" method="post" enctype="multipart/form-data" action="<?php echo OCP\Util::linkTo('files_external', 'ajax/addRootCertificate.php'); ?>"> +<form id="files_external"> <fieldset class="personalblock"> <legend><strong><?php echo $l->t('External Storage'); ?></strong></legend> <table id="externalStorage" data-admin='<?php echo json_encode($_['isAdminPage']); ?>'> @@ -81,7 +81,18 @@ </table> <br /> - <?php if (!$_['isAdminPage']): ?> + <?php if ($_['isAdminPage']): ?> + <br /> + <input type="checkbox" name="allowUserMounting" id="allowUserMounting" value="1" <?php if ($_['allowUserMounting'] == 'yes') echo ' checked="checked"'; ?> /> + <label for="allowUserMounting"><?php echo $l->t('Enable User External Storage'); ?></label><br/> + <em><?php echo $l->t('Allow users to mount their own external storage'); ?></em> + <?php endif; ?> + </fieldset> +</form> + +<form id="files_external" method="post" enctype="multipart/form-data" action="<?php echo OCP\Util::linkTo('files_external', 'ajax/addRootCertificate.php'); ?>"> +<fieldset class="personalblock"> +<?php if (!$_['isAdminPage']): ?> <table id="sslCertificate" data-admin='<?php echo json_encode($_['isAdminPage']); ?>'> <thead> <tr> @@ -101,12 +112,5 @@ <input type="file" id="rootcert_import" name="rootcert_import" style="width:230px;"> <input type="submit" name="cert_import" value="<?php echo $l->t('Import Root Certificate'); ?>" /> <?php endif; ?> - - <?php if ($_['isAdminPage']): ?> - <br /> - <input type="checkbox" name="allowUserMounting" id="allowUserMounting" value="1" <?php if ($_['allowUserMounting'] == 'yes') echo ' checked="checked"'; ?> /> - <label for="allowUserMounting"><?php echo $l->t('Enable User External Storage'); ?></label><br/> - <em><?php echo $l->t('Allow users to mount their own external storage'); ?></em> - <?php endif; ?> - </fieldset> -</form> +</fieldset> +</form>
\ No newline at end of file |