UI now correctly shows if self-signed certificates are allowed for a link

pull/217/head
iglocska 2014-02-17 11:44:16 +01:00
parent 11b1ff6926
commit f5c717f067
1 changed files with 2 additions and 0 deletions

View File

@ -23,6 +23,7 @@
<th><?php echo $this->Paginator->sort('url');?></th>
<th>From</th>
<th><?php echo $this->Paginator->sort('cert_file');?></th>
<th><?php echo $this->Paginator->sort('self_signed');?></th>
<th><?php echo $this->Paginator->sort('org');?></th>
<th>Last Pulled ID</th>
<th>Last Pushed ID</th>
@ -36,6 +37,7 @@ foreach ($servers as $server): ?>
<td><?php echo h($server['Server']['url']); ?>&nbsp;</td>
<td><?php echo h($server['Server']['organization']); ?>&nbsp;</td>
<td class="short"><?php echo h($server['Server']['cert_file']); ?>&nbsp;</td>
<td class="short"><?php echo ($server['Server']['self_signed'] ? 'Yes' : 'No'); ?>&nbsp;</td>
<td class="short"><?php echo h($server['Server']['org']); ?>&nbsp;</td>
<td class="short"><?php echo $server['Server']['lastpulledid']; ?></td>
<td class="short"><?php echo $server['Server']['lastpushedid']; ?></td>