aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRomain d'Alverny <rda@mageia.org>2012-05-22 20:48:10 +0000
committerRomain d'Alverny <rda@mageia.org>2012-05-22 20:48:10 +0000
commitd770406d652c4934e312d40d671082dc76910a5d (patch)
treea879612abc295677cb84dfde53a9b3b1ca57f174
parent49bb12e1632f089157eedda7ff7b1db6cdba62ee (diff)
downloadwww-d770406d652c4934e312d40d671082dc76910a5d.tar
www-d770406d652c4934e312d40d671082dc76910a5d.tar.gz
www-d770406d652c4934e312d40d671082dc76910a5d.tar.bz2
www-d770406d652c4934e312d40d671082dc76910a5d.tar.xz
www-d770406d652c4934e312d40d671082dc76910a5d.zip
show localized date
-rw-r--r--en/community/index.php4
-rw-r--r--lib/news.php4
2 files changed, 4 insertions, 4 deletions
diff --git a/en/community/index.php b/en/community/index.php
index 8bf45ad9f..222de5d37 100644
--- a/en/community/index.php
+++ b/en/community/index.php
@@ -88,9 +88,9 @@ include '../../lib/news.php';
<h2><a href="<?php _e('blog_url')?>"><?php _e('News');?></a></h2>
<?php
if (_t('planet_url') != 'planet_url')
- show_feed(null, _t('planet_url'), _t('planet_url') . '?type=rss10', 9);
+ show_feed($locale, null, _t('planet_url'), _t('planet_url') . '?type=rss10', 9);
elseif (_t('blog_url') != 'blog_url')
- show_feed(null, _t('blog_url'), _t('blog_url') . '?feed=rss', 9);
+ show_feed($locale, null, _t('blog_url'), _t('blog_url') . '?feed=rss', 9);
// don't work:
//show_feed('Mageia MLs', '', 'https://ml.mageia.org/l/rss/active_lists?count=20&for=10');
//show_feed('Mageia Forum', 'http://forum.mageia.org/en/', 'https://forums.mageia.org/en/feed.php?mode=topics_active');
diff --git a/lib/news.php b/lib/news.php
index 3a9f7bd86..736af1dd2 100644
--- a/lib/news.php
+++ b/lib/news.php
@@ -101,7 +101,7 @@ function get_feed($url, $count = 5, $cache_timeout = 5)
/**
*/
-function show_feed($title, $link, $feed, $count = 5, $skip = null) {
+function show_feed($locale, $title, $link, $feed, $count = 5, $skip = null) {
if (!is_null($skip))
$count += 5;
@@ -118,7 +118,7 @@ function show_feed($title, $link, $feed, $count = 5, $skip = null) {
continue;
$s .= sprintf('<li><a href="%s">%s</a> <span class="dt">%s</span></li>',
- $d['link'], $d['title'], news_date($d['date'], 'fr'));
+ $d['link'], $d['title'], news_date($d['date'], $locale));
}
$s .= '</ul>';
echo $s;