Display transport type from config in the config overview

refs #11398
This commit is contained in:
Eric Lippmann 2016-09-01 10:49:56 +02:00
parent 440a3f5fdd
commit 64b3811ab0
1 changed files with 1 additions and 1 deletions

View File

@ -92,7 +92,7 @@
); ?>
<span class="config-label-meta">&#40;<?= sprintf(
$this->translate('Type: %s'),
$config->host !== null ? $this->translate('Remote') : $this->translate('Local')
ucfirst($config->get('transport', 'local'))
) ?>&#41;
</span>
</td>