summaryrefslogtreecommitdiffstats
path: root/core/templates
diff options
context:
space:
mode:
authorJan-Christoph Borchardt <hey@jancborchardt.net>2015-11-25 13:16:00 +0100
committerJan-Christoph Borchardt <hey@jancborchardt.net>2015-11-25 13:16:00 +0100
commitcd88854369cd11038042e6ba38b1aaa17c7c2b01 (patch)
tree46e46e4afc208573c5fb3ad56b23da09c69337e8 /core/templates
parent50780e451bd993f6b0e33df198f98832f3f27e2d (diff)
downloadnextcloud-server-cd88854369cd11038042e6ba38b1aaa17c7c2b01.tar.gz
nextcloud-server-cd88854369cd11038042e6ba38b1aaa17c7c2b01.zip
update page: fix heading whitespace and unbold less important sections
Diffstat (limited to 'core/templates')
-rw-r--r--core/templates/update.admin.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/core/templates/update.admin.php b/core/templates/update.admin.php
index ae88350bdc5..75815de84bc 100644
--- a/core/templates/update.admin.php
+++ b/core/templates/update.admin.php
@@ -8,7 +8,7 @@
<?php } ?>
<?php if (!empty($_['appsToUpgrade'])) { ?>
<div class="infogroup">
- <span class="bold"><?php p($l->t('These apps will be updated:')); ?></span>
+ <span><?php p($l->t('These apps will be updated:')); ?></span>
<ul class="content appList">
<?php foreach ($_['appsToUpgrade'] as $appInfo) { ?>
<li><?php p($appInfo['name']) ?> (<?php p($appInfo['id']) ?>)</li>
@@ -18,7 +18,7 @@
<?php } ?>
<?php if (!empty($_['incompatibleAppsList'])) { ?>
<div class="infogroup">
- <span class="bold"><?php p($l->t('These incompatible apps will be disabled:')) ?></span>
+ <span><?php p($l->t('These incompatible apps will be disabled:')) ?></span>
<ul class="content appList">
<?php foreach ($_['incompatibleAppsList'] as $appInfo) { ?>
<li><?php p($appInfo['name']) ?> (<?php p($appInfo['id']) ?>)</li>
@@ -27,7 +27,7 @@
</div>
<?php } ?>
<?php if (!empty($_['oldTheme'])) { ?>
- <div class="infogroup bold">
+ <div class="infogroup">
<?php p($l->t('The theme %s has been disabled.', array($_['oldTheme']))) ?>
</div>
<?php } ?>