Merge pull request #17994 from owncloud/server-status
correct order and capitalization of 'Server status' admin settings entry
This commit is contained in:
commit
519fcee15f
|
@ -223,7 +223,7 @@ $formsAndMore = array_merge($formsAndMore, $formsMap);
|
|||
$formsAndMore[] = ['anchor' => 'backgroundjobs', 'section-name' => $l->t('Cron')];
|
||||
$formsAndMore[] = ['anchor' => 'mail_general_settings', 'section-name' => $l->t('Email server')];
|
||||
$formsAndMore[] = ['anchor' => 'log-section', 'section-name' => $l->t('Log')];
|
||||
$formsAndMore[] = ['anchor' => 'server-status', 'section-name' => $l->t('Server Status')];
|
||||
$formsAndMore[] = ['anchor' => 'server-status', 'section-name' => $l->t('Server status')];
|
||||
$formsAndMore[] = ['anchor' => 'admin-tips', 'section-name' => $l->t('Tips & tricks')];
|
||||
if ($updaterAppPanel) {
|
||||
$formsAndMore[] = ['anchor' => 'updater', 'section-name' => $l->t('Updates')];
|
||||
|
|
|
@ -507,6 +507,19 @@ if ($_['cronErrors']) {
|
|||
<?php endif; ?>
|
||||
</div>
|
||||
|
||||
<div class="section" id="server-status">
|
||||
<h2><?php p($l->t('Server status'));?></h2>
|
||||
<ul>
|
||||
<li>
|
||||
<?php if ($_['fileLockingEnabled']) {
|
||||
p($l->t('Transactional File Locking is enabled.'));
|
||||
} else {
|
||||
p($l->t('Transactional File Locking is disabled.'));
|
||||
} ?>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="section" id="admin-tips">
|
||||
<h2><?php p($l->t('Tips & tricks'));?></h2>
|
||||
<ul>
|
||||
|
@ -528,18 +541,6 @@ if ($_['cronErrors']) {
|
|||
<li><a target="_blank" href="<?php p(link_to_docs('admin-security')); ?>"><?php p($l->t('Hardening and security guidance'));?> ↗</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="section" id="server-status">
|
||||
<h2><?php p($l->t('Server Status'));?></h2>
|
||||
<ul>
|
||||
<li>
|
||||
<?php if ($_['fileLockingEnabled']) {
|
||||
p($l->t('Transactional File Locking is enabled.'));
|
||||
} else {
|
||||
p($l->t('Transactional File Locking is disabled.'));
|
||||
} ?>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="section">
|
||||
<h2><?php p($l->t('Version'));?></h2>
|
||||
|
|
Loading…
Reference in New Issue