diff options
author | Lukas Reschke <lukas@owncloud.com> | 2015-11-05 17:33:09 +0100 |
---|---|---|
committer | Lukas Reschke <lukas@owncloud.com> | 2015-11-05 17:33:09 +0100 |
commit | f8d572f55d14884cae66824699a3648fc729afea (patch) | |
tree | 06ef7cccef1503f5e1b836711d9360d78c121267 | |
parent | e28daf2b377fa0ab6450947e692c089624e3b727 (diff) | |
parent | 93f9577258c1dc271f65fcae82cd0bde30b5ae20 (diff) | |
download | nextcloud-server-f8d572f55d14884cae66824699a3648fc729afea.tar.gz nextcloud-server-f8d572f55d14884cae66824699a3648fc729afea.zip |
Merge pull request #20339 from owncloud/header-not-bold
do not bold heading of update screen
-rw-r--r-- | core/templates/update.admin.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/templates/update.admin.php b/core/templates/update.admin.php index fbd3025f2e0..ae88350bdc5 100644 --- a/core/templates/update.admin.php +++ b/core/templates/update.admin.php @@ -1,9 +1,9 @@ <div class="update" data-productname="<?php p($_['productName']) ?>" data-version="<?php p($_['version']) ?>"> <div class="updateOverview"> <?php if ($_['isAppsOnlyUpgrade']) { ?> - <h2 class="title bold"><?php p($l->t('App update required')); ?></h2> + <h2 class="title"><?php p($l->t('App update required')); ?></h2> <?php } else { ?> - <h2 class="title bold"><?php p($l->t('%s will be updated to version %s', + <h2 class="title"><?php p($l->t('%s will be updated to version %s', array($_['productName'], $_['version']))); ?></h2> <?php } ?> <?php if (!empty($_['appsToUpgrade'])) { ?> |