aboutsummaryrefslogtreecommitdiffstats
path: root/settings/templates
diff options
context:
space:
mode:
authorJan-Christoph Borchardt <JanCBorchardt@fsfe.org>2011-09-04 10:34:49 +0200
committerJan-Christoph Borchardt <JanCBorchardt@fsfe.org>2011-09-04 10:34:57 +0200
commitf4b9895cbf71376559dd1eaadac813ded0737b13 (patch)
tree6003fee2f531d935356c75ce41067ba9a9f4cd7a /settings/templates
parentec87e2eac4b4f7e96d6e94e34e1a8f61a78aa0e9 (diff)
downloadnextcloud-server-f4b9895cbf71376559dd1eaadac813ded0737b13.tar.gz
nextcloud-server-f4b9895cbf71376559dd1eaadac813ded0737b13.zip
having non-editable stuff as input fields is really confusing. You were right Robin ;)
Diffstat (limited to 'settings/templates')
-rw-r--r--settings/templates/personal.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/settings/templates/personal.php b/settings/templates/personal.php
index 67e647ce926..decda043b8a 100644
--- a/settings/templates/personal.php
+++ b/settings/templates/personal.php
@@ -32,8 +32,9 @@
</form>
<p class="personalblock">
- <label for="webdav"><strong>WebDAV</strong></label>
- <input id="webdav" type="text" value="<?php echo ((isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == 'on') ? 'https' : 'http').'://'.$_SERVER['HTTP_HOST'].OC::$WEBROOT.'/files/webdav.php'; ?>" title="<?php echo $l->t('use this address to connect to your ownCloud in your file manager');?>" />
+ <strong>WebDAV</strong>
+ <?php echo ((isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == 'on') ? 'https' : 'http').'://'.$_SERVER['HTTP_HOST'].OC::$WEBROOT.'/files/webdav.php'; ?><br />
+ <em><?php echo $l->t('use this address to connect to your ownCloud in your file manager');?></em>
</p>
<?php foreach($_['forms'] as $form){