Here is a patch for aggregator module so aggregator feed page shows dates with month name in localized version.

CommentFileSizeAuthor
aggregator_localized_date.path407 bytescarlosparamio

Comments

antanins’s picture

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";

Steven’s picture

Status: Needs review » Fixed

This problem has already been fixed in aggregator.module.

Anonymous’s picture

Anonymous’s picture

Uwe Hermann’s picture

Version: » 4.6.0
Status: Fixed » Closed (fixed)