summaryrefslogtreecommitdiff
path: root/modules/aggregator/aggregator.module
diff options
context:
space:
mode:
authorNeil Drumm <drumm@3064.no-reply.drupal.org>2006-09-06 06:53:39 +0000
committerNeil Drumm <drumm@3064.no-reply.drupal.org>2006-09-06 06:53:39 +0000
commit77354a34e50287e9e95cfdee69130b24acfe5597 (patch)
treeb851263e862962e7e0be77259069cc1a5c86840c /modules/aggregator/aggregator.module
parentbdfa735e1c9c3a8ec1cdab42f99f93a2083cca2e (diff)
downloadbrdo-77354a34e50287e9e95cfdee69130b24acfe5597.tar.gz
brdo-77354a34e50287e9e95cfdee69130b24acfe5597.tar.bz2
#49443 by Ralf Stamm and webchick. Make default date format consistent.
Diffstat (limited to 'modules/aggregator/aggregator.module')
-rw-r--r--modules/aggregator/aggregator.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/aggregator/aggregator.module b/modules/aggregator/aggregator.module
index a5ec9b18c..d5cf06263 100644
--- a/modules/aggregator/aggregator.module
+++ b/modules/aggregator/aggregator.module
@@ -1368,7 +1368,7 @@ function theme_aggregator_page_item($item) {
$source_date = t('%ago ago', array('%ago' => format_interval(time() - $item->timestamp)));
}
else {
- $source_date = format_date($item->timestamp, 'custom', variable_get('date_format_medium', 'D, Y-m-d H:i'));
+ $source_date = format_date($item->timestamp, 'custom', variable_get('date_format_medium', 'D, m/d/Y - H:i'));
}
$output .= "<div class=\"feed-item\">\n";