Merge pull request #20339 from owncloud/header-not-bold

do not bold heading of update screen
This commit is contained in:
Lukas Reschke 2015-11-05 17:33:09 +01:00
commit f8d572f55d
1 changed files with 2 additions and 2 deletions

View File

@ -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'])) { ?>