Closed (fixed)
Project:
Drupal core
Version:
4.6.0
Component:
aggregator.module
Priority:
Normal
Category:
Bug report
Assigned:
Reporter:
Created:
18 Mar 2005 at 17:33 UTC
Updated:
26 Aug 2005 at 22:53 UTC
Here is a patch for aggregator module so aggregator feed page shows dates with month name in localized version.
| Comment | File | Size | Author |
|---|---|---|---|
| aggregator_localized_date.path | 407 bytes | carlosparamio |
Comments
Comment #1
antanins commentedHi, 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";Comment #2
Steven commentedThis problem has already been fixed in aggregator.module.
Comment #3
(not verified) commentedComment #4
(not verified) commentedComment #5
Uwe Hermann commented