Merge branch '370-fix-date-time-on-ticket' into '2-6-0'

Fix time for created/updated on ticket header

Closes #370

See merge request !8
merge-requests/9/head
Mike Koch 8 years ago
commit 603d8233a7

@ -1023,10 +1023,10 @@ require_once(HESK_PATH . 'inc/show_admin_nav.inc.php');
</div>
<div class="row">
<div class="col-md-3 col-sm-12" style="padding-top: 6px">
<p><?php echo $hesklang['created_on'] . ': ' . hesk_date($ticket['dt']); ?></p>
<p><?php echo $hesklang['created_on'] . ': ' . hesk_date($ticket['dt'], true); ?></p>
</div>
<div class="col-md-3 col-sm-12" style="padding-top: 6px">
<p><?php echo $hesklang['last_update'] . ': ' . hesk_date($ticket['lastchange']); ?></p>
<p><?php echo $hesklang['last_update'] . ': ' . hesk_date($ticket['lastchange'], true); ?></p>
</div>
<div class="col-md-6 col-sm-12 close-ticket">
<?php

Loading…
Cancel
Save