diff options
author | Thomas Mueller <thomas.mueller@tmit.eu> | 2013-02-07 00:49:39 +0100 |
---|---|---|
committer | Thomas Mueller <thomas.mueller@tmit.eu> | 2013-02-07 00:49:39 +0100 |
commit | 84f3c8b6cc1060203d807ee65545478ce34f93c4 (patch) | |
tree | 16b9e0d130e14e2a0bedbba70d6a40c690029e01 /settings/templates/admin.php | |
parent | 3582f7bd09f81e1aadb583ab0d36fb0cbc695514 (diff) | |
download | nextcloud-server-84f3c8b6cc1060203d807ee65545478ce34f93c4.tar.gz nextcloud-server-84f3c8b6cc1060203d807ee65545478ce34f93c4.zip |
show webdav test results in admin section as well
Diffstat (limited to 'settings/templates/admin.php')
-rw-r--r-- | settings/templates/admin.php | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/settings/templates/admin.php b/settings/templates/admin.php index 0097489743f..8c2b6148a66 100644 --- a/settings/templates/admin.php +++ b/settings/templates/admin.php @@ -22,6 +22,21 @@ if (!$_['htaccessworking']) { <?php } +// is WebDAV working ? +if (!$_['isWebDavWorking']) { + ?> +<fieldset class="personalblock"> + <legend><strong><?php echo $l->t('Setup Warning');?></strong></legend> + + <span class="securitywarning"> + <?php echo $l->t('Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken.'); ?> + <?php echo $l->t('Please double check the <a href=\'%s\'>installation guides</a>.', 'http://doc.owncloud.org/server/5.0/admin_manual/installation.html'); ?> + </span> + +</fieldset> +<?php +} + // is locale working ? if (!$_['islocaleworking']) { ?> |