accounting date template fixes

This commit is contained in:
SJ
2013-08-18 13:59:55 +02:00
parent 4919e69e85
commit c72cb9bb08
7 changed files with 11 additions and 11 deletions

View File

@ -56,8 +56,8 @@
<td><a href="index.php?route=accounting/accounting&amp;view=accounts&amp;domain=<?php echo $details['item']; ?>"><?php echo count($accounts[$details['item']]); ?></a></td>
<?php } ?>
<td><?php echo date("d M Y",$details['oldest']); ?></td>
<td><?php echo date("d M Y",$details['newest']); ?></td>
<td><?php echo date(DATE_TEMPLATE, $details['oldest']); ?></td>
<td><?php echo date(DATE_TEMPLATE, $details['newest']); ?></td>
<td>
<?php echo $details['sent']; ?>
</td>

View File

@ -17,8 +17,8 @@
<tr>
<td class="domaincell"><?php print $user['username']; ?></td>
<td class="domaincell"><?php if(DEMO_MODE == 1) { print anonimize_ip_addr($user['ipaddr']); } else { print $user['ipaddr']; } ?></td>
<td class="domaincell"><?php print date("Y.m.d. G:i:s", $user['ts']); ?></td>
<td class="domaincell"><?php print date("Y.m.d. G:i:s", $user['last_activity']); ?></td>
<td class="domaincell"><?php print date(DATE_TEMPLATE . " H:i:s", $user['ts']); ?></td>
<td class="domaincell"><?php print date(DATE_TEMPLATE . " H:i:s", $user['last_activity']); ?></td>
</tr>
<?php } ?>