Posted by toddy on November 15, 2006 at 3:44pm
2 followers
Jump to:
| Project: | Project |
| Version: | 4.7.x-2.0 |
| Component: | Releases |
| Category: | bug report |
| Priority: | normal |
| Assigned: | dww |
| Status: | closed (fixed) |
Issue Summary
Hi,
the date reported in "Last updated:" on the "View all releases" page does not get updated. In my module weather, the nightly generated HEAD tarball still displays Nov 11, 2006, although I've updated the CVS on Nov 14, 2006. Note that the contents of the tarball are correct, it's the latest and greatest from CVS HEAD, it's just the date display on the website which is wrong.
Regards,
Tobias
Comments
#1
fixed via a trivial change:
- $output .= '<small>' . t('Last updated: %changed', array('%changed' => format_date($release->changed))) . '</small><br />';+ $output .= '<small>' . t('Last updated: %changed', array('%changed' => format_date($release->file_date))) . '</small><br />';
committed to DRUPAL-4-7--2 branch and installed on drupal.org.
thanks for the report!
-derek
#2