aboutsummaryrefslogtreecommitdiffstats
path: root/settings/templates
diff options
context:
space:
mode:
authorJan-Christoph Borchardt <JanCBorchardt@fsfe.org>2011-08-14 16:12:27 +0200
committerJan-Christoph Borchardt <JanCBorchardt@fsfe.org>2011-08-14 16:12:31 +0200
commit7bb261f81014b3f0abb2677f22289e6906ced749 (patch)
tree5f310d1adb00c9d778ca60422c976c301e7cd992 /settings/templates
parentdf532e3f823375e059defff4e5e3fee2af6c8054 (diff)
downloadnextcloud-server-7bb261f81014b3f0abb2677f22289e6906ced749.tar.gz
nextcloud-server-7bb261f81014b3f0abb2677f22289e6906ced749.zip
more fixes for Personal and Tipsy
Diffstat (limited to 'settings/templates')
-rw-r--r--settings/templates/personal.php11
1 files changed, 5 insertions, 6 deletions
diff --git a/settings/templates/personal.php b/settings/templates/personal.php
index 8a6439f9722..95df4d8c712 100644
--- a/settings/templates/personal.php
+++ b/settings/templates/personal.php
@@ -1,5 +1,5 @@
-<div id="quota" class="personalblock"><div style="width:<?php echo $_['usage_relative'] ?>%;">
- <p><?php echo $l->t('You use');?> <strong><?php echo $_['usage'] ?></strong> <?php echo $l->t('of the available');?> <?php echo $_['total_space'] ?></p>
+<div id="quota" class="personalblock"><div style="width:<?php echo $_['usage_relative'];?>%;">
+ <p><?php echo $l->t('You use');?> <strong><?php echo $_['usage'];?></strong> <?php echo $l->t('of the available');?> <strong><?php echo $_['total_space'];?></strong></p>
</div></div>
<form id="passwordform">
@@ -15,7 +15,7 @@
<form>
<fieldset class="personalblock">
- <strong><label for="languageinput"><?php echo $l->t('Language');?></label></strong>
+ <label for="languageinput"><strong><?php echo $l->t('Language');?></strong></label>
<select id="languageinput" name='lang'>
<?php foreach($_['languages'] as $language):?>
<option value="<?php echo $language['code'];?>"><?php echo $language['name'];?></option>
@@ -26,9 +26,8 @@
</form>
<p class="personalblock">
- <strong>WebDAV</strong> <a href="<?php echo ((isset($_SERVER["HTTPS"]) && $_SERVER["HTTPS"] == 'on') ? 'https' : 'http').'://'.$_SERVER['HTTP_HOST'].OC::$WEBROOT.'/files/webdav.php'; ?>" title="webdav">
- <?php echo ((isset($_SERVER["HTTPS"]) && $_SERVER["HTTPS"] == 'on') ? 'https' : 'http').'://'.$_SERVER['HTTP_HOST'].OC::$WEBROOT.'/files/webdav.php'; ?>
- </a>
+ <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="use this address to connect to your ownCloud in your file manager" />
</p>
<?php foreach($_['forms'] as $form){