summaryrefslogtreecommitdiff
path: root/modules/aggregator.module
diff options
context:
space:
mode:
authorSteven Wittens <steven@10.no-reply.drupal.org>2005-06-01 04:03:54 +0000
committerSteven Wittens <steven@10.no-reply.drupal.org>2005-06-01 04:03:54 +0000
commit0cda6e20cf4342f6e3212963df2dfabd69704737 (patch)
tree80813fe74378bcdbfa1ef077de933fc2cf488041 /modules/aggregator.module
parentc928f9c1bb680bf4340bf749fa7599ec8b30c9f2 (diff)
downloadbrdo-0cda6e20cf4342f6e3212963df2dfabd69704737.tar.gz
brdo-0cda6e20cf4342f6e3212963df2dfabd69704737.tar.bz2
- #23734: Replace date() with format_date() in aggregator
Diffstat (limited to 'modules/aggregator.module')
-rw-r--r--modules/aggregator.module6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/aggregator.module b/modules/aggregator.module
index a6e2f34a8..aeb1bd404 100644
--- a/modules/aggregator.module
+++ b/modules/aggregator.module
@@ -1097,14 +1097,14 @@ function theme_aggregator_summary_item($item) {
function theme_aggregator_page_item($item) {
static $last;
- $date = date('Ymd', $item->timestamp);
+ $date = format_date($item->timestamp, 'custom', 'Ymd');
if ($date != $last) {
$last = $date;
- $output .= '<h3>'. date('F j, Y', $item->timestamp) ."</h3>\n";
+ $output .= '<h3>'. format_date($item->timestamp, 'custom', 'F j, Y') ."</h3>\n";
}
$output .= "<div class=\"news-item\">\n";
- $output .= ' <div class="date">'. date('H:i', $item->timestamp) ."</div>\n";
+ $output .= ' <div class="date">'. format_date($item->timestamp, 'custom', 'H:i') ."</div>\n";
$output .= " <div class=\"body\">\n";
$output .= ' <div class="title"><a href="'. check_url($item->link) .'">'. check_plain($item->title) ."</a></div>\n";
if ($item->description) {