[drupal-devel] [bug] Patch for localized date in aggregator feed page
Issue status update for http://drupal.org/node/19109 Project: Drupal Version: cvs Component: aggregator.module Category: bug reports Priority: normal Assigned to: carlosparamio Reported by: carlosparamio Updated by: carlosparamio Status: patch Attachment: http://drupal.org/files/issues/aggregator_localized_date.path (407 bytes) Here is a patch for aggregator module so aggregator feed page shows dates with month name in localized version. carlosparamio
Issue status update for http://drupal.org/node/19109 Project: Drupal Version: cvs Component: aggregator.module Category: bug reports Priority: normal Assigned to: carlosparamio Reported by: carlosparamio Updated by: Antanins Status: patch Hi, Carlos. There's a missing bracket in your code: $output .= '<h3>'. t(date('F', $item->timestamp) . date(' j, Y', $item->timestamp) ."</h3>\n"; should be: $output .= '<h3>'. t(date('F', $item->timestamp)) . date(' j, Y', $item->timestamp) ."</h3>\n"; Antanins Previous comments: ------------------------------------------------------------------------ March 18, 2005 - 19:33 : carlosparamio Attachment: http://drupal.org/files/issues/aggregator_localized_date.path (407 bytes) Here is a patch for aggregator module so aggregator feed page shows dates with month name in localized version.
participants (2)
-
Antanins -
carlosparamio