diff options
author | Romain d'Alverny <rda@mageia.org> | 2012-06-30 18:05:33 +0000 |
---|---|---|
committer | Romain d'Alverny <rda@mageia.org> | 2012-06-30 18:05:33 +0000 |
commit | 012b771af9a919e6fdec0d6da5589ee6cd7075fe (patch) | |
tree | 5adc557a81b3f2773a9c1d8760edce2ebf162f3a /en/community/index.php | |
parent | 0917848490e51a7b7e15f8f2e4b88571761858da (diff) | |
download | www-012b771af9a919e6fdec0d6da5589ee6cd7075fe.tar www-012b771af9a919e6fdec0d6da5589ee6cd7075fe.tar.gz www-012b771af9a919e6fdec0d6da5589ee6cd7075fe.tar.bz2 www-012b771af9a919e6fdec0d6da5589ee6cd7075fe.tar.xz www-012b771af9a919e6fdec0d6da5589ee6cd7075fe.zip |
better output for news summary
Diffstat (limited to 'en/community/index.php')
-rw-r--r-- | en/community/index.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/en/community/index.php b/en/community/index.php index 4e438f872..83b542f77 100644 --- a/en/community/index.php +++ b/en/community/index.php @@ -2,7 +2,6 @@ define('HLANG', true); require '../../langs.php'; -include 'locales.php'; $_t = array( 'de' => array( @@ -67,6 +66,7 @@ $_t = array( ); $_t = i18n::get_strings($_t, $locale, $i18n_fallback_rules); +_lang_load($locale, 'community'); include '../../lib/news.php'; ?> @@ -108,9 +108,9 @@ include '../../lib/news.php'; <h2><a href="<?php _e('blog_url')?>"><?php _e('News');?></a></h2> <?php if (_d('planet_url') != 'planet_url') { - show_feed($locale, null, _d('planet_url'), _d('planet_url') . '?type=rss10', 9); + show_feed($locale, null, _d('planet_url'), _d('planet_url') . '?type=rss10', 9, null, true); } elseif (_d('blog_url') != 'blog_url') { - show_feed($locale, null, _d('blog_url'), _d('blog_url') . '?feed=rss', 9); + show_feed($locale, null, _d('blog_url'), _d('blog_url') . '?feed=rss', 9, null, true); } // don't work: //show_feed('Mageia MLs', '', 'https://ml.mageia.org/l/rss/active_lists?count=20&for=10'); |