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

dww’s picture

Assigned: Unassigned » dww
Status: Active » Fixed

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

Anonymous’s picture

Status: Fixed » Closed (fixed)