Ticket #228 (closed defect: fixed)
Snapshot screen - date not displayed correctly (Windows Platform)
| Reported by: | Rick | Owned by: | brieb |
|---|---|---|---|
| Priority: | minor | Milestone: | unknown |
| Component: | phpbms | Version: | 0.92 |
| Keywords: | Cc: |
Description
On the Snapshot screen, the day numbers are missing in the Week View (ie get Dec 2007 rather than Dec 14 2007).
This is because %e in strftime is not supported under windows.
In snapshot_ajax.php, replace:
<?php echo strftime("%b %e %Y",((int) str_replace("d","",$date)) ); ?>
with
<?php echo strftime("%b %#d %Y",((int) str_replace("d","",$date)) ); ?>
Change History
Note: See
TracTickets for help on using
tickets.