Monitoring/Configuration: Show ido, Ido as IDO

refs #3776
This commit is contained in:
Eric Lippmann 2013-08-20 20:22:39 +02:00
parent cd1fb2e4b5
commit 585f69fe8f
2 changed files with 2 additions and 2 deletions

View File

@ -138,7 +138,7 @@ class EditBackendForm extends Form
'select',
'backend_ido_resource',
array(
'label' => 'Ido Connection',
'label' => 'IDO Connection',
'value' => $this->backend->resource,
'required' => true,
'multiOptions' => $this->getDatabaseResources(),

View File

@ -15,7 +15,7 @@
<?php $removeUrl = Url::fromPath('/monitoring/config/removebackend', array('backend' => $backendName)); ?>
<?php $editUrl = Url::fromPath('/monitoring/config/editbackend', array('backend' => $backendName)); ?>
<b><?= $this->escape($backendName); ?></b>
<small>(Type: <?= $this->escape($config['type']); ?>)</small>
<small>(Type: <?= $this->escape($config['type'] === 'ido' ? 'IDO' : ucfirst($config['type'])); ?>)</small>
<?php if ($config['disabled']): ?>
- <b>Disabled</b>
<?php endif; ?>