개인결제 일시 출력 오류 수정

This commit is contained in:
chicpro
2013-11-18 14:17:47 +09:00
parent 101e0c594a
commit 01236db775
2 changed files with 2 additions and 2 deletions

View File

@ -86,7 +86,7 @@ include_once(G5_MSHOP_PATH.'/_head.php');
</tr>
<tr>
<th scope="row">결제일시</th>
<td><?php echo $pp['pp_receipt_time']; ?></td>
<td><?php echo is_null_time($pp['pp_receipt_time']) ? '' : $pp['pp_receipt_time']; ?></td>
</tr>
<?php
}

View File

@ -99,7 +99,7 @@ if(openwin != null) {
</tr>
<tr>
<th scope="row">결제일시</th>
<td><?php echo is_null_time($pp['pp_receipt_time']) ? $pp['pp_receipt_time'] : ''; ?></td>
<td><?php echo is_null_time($pp['pp_receipt_time']) ? '' : $pp['pp_receipt_time']; ?></td>
</tr>
<?php
}