Index: common.inc =================================================================== RCS file: /cvs/drupal/drupal/includes/common.inc,v retrieving revision 1.756.2.48 diff -u -r1.756.2.48 common.inc --- common.inc 25 Feb 2009 23:16:45 -0000 1.756.2.48 +++ common.inc 26 Apr 2009 16:23:43 -0000 @@ -1218,7 +1218,15 @@ * A translated string representation of the interval. */ function format_interval($timestamp, $granularity = 2, $langcode = NULL) { - $units = array('1 year|@count years' => 31536000, '1 week|@count weeks' => 604800, '1 day|@count days' => 86400, '1 hour|@count hours' => 3600, '1 min|@count min' => 60, '1 sec|@count sec' => 1); + $units = array( + '1 year|@count years' => 31536000, + '1 month|@count months' => 2592000, + '1 week|@count weeks' => 604800, + '1 day|@count days' => 86400, + '1 hour|@count hours' => 3600, + '1 min|@count min' => 60, + '1 sec|@count sec' => 1 + ); $output = ''; foreach ($units as $key => $value) { $key = explode('|', $key);