Fix #11334 Table creation time, last update and last check column are empty

Signed-off-by: Madhura Jayaratne <madhura.cj@gmail.com>
This commit is contained in:
Madhura Jayaratne 2015-07-29 22:19:05 +05:30
parent 097b83cd98
commit 96ce8358bf

View File

@ -135,19 +135,19 @@
<?php if ($GLOBALS['cfg']['ShowDbStructureCreation']): ?>
<td class="value tbl_creation">
<?php $create_time ? PMA_Util::localisedDate(strtotime($create_time)) : '-'; ?>
<?php echo $create_time ? PMA_Util::localisedDate(strtotime($create_time)) : '-'; ?>
</td>
<?php endif; ?>
<?php if ($GLOBALS['cfg']['ShowDbStructureLastUpdate']): ?>
<td class="value tbl_last_update">
<?php $update_time ? PMA_Util::localisedDate(strtotime($update_time)) : '-'; ?>
<?php echo $update_time ? PMA_Util::localisedDate(strtotime($update_time)) : '-'; ?>
</td>
<?php endif; ?>
<?php if ($GLOBALS['cfg']['ShowDbStructureLastCheck']): ?>
<td class="value tbl_last_check">
<?php $check_time ? PMA_Util::localisedDate(strtotime($check_time)) : '-'; ?>
<?php echo $check_time ? PMA_Util::localisedDate(strtotime($check_time)) : '-'; ?>
</td>
<?php endif; ?>