aboutsummaryrefslogtreecommitdiffstats
path: root/donators.inc.php
diff options
context:
space:
mode:
authorRomain d'Alverny <rda@mageia.org>2012-05-11 10:45:27 +0000
committerRomain d'Alverny <rda@mageia.org>2012-05-11 10:45:27 +0000
commit36e5245f70f34610af3da3375462d3abb2f83c8a (patch)
tree9b13ac9c306ab280e4e86ba73cccc5f14b8d9fcf /donators.inc.php
parent89c72c313d84e488bb802d77c9e55036bfb7f201 (diff)
downloadwww-36e5245f70f34610af3da3375462d3abb2f83c8a.tar
www-36e5245f70f34610af3da3375462d3abb2f83c8a.tar.gz
www-36e5245f70f34610af3da3375462d3abb2f83c8a.tar.bz2
www-36e5245f70f34610af3da3375462d3abb2f83c8a.tar.xz
www-36e5245f70f34610af3da3375462d3abb2f83c8a.zip
updated (l10n, layout) thank-you
Diffstat (limited to 'donators.inc.php')
-rw-r--r--donators.inc.php10
1 files changed, 6 insertions, 4 deletions
diff --git a/donators.inc.php b/donators.inc.php
index 5affa55e4..68c6bf96c 100644
--- a/donators.inc.php
+++ b/donators.inc.php
@@ -293,7 +293,7 @@ $orgs = array(
array('http://zarb.org/', 'zarb.org'),
// see mirrors.mageia.org
- array('http://www.umpc.fr/', 'Université Pierre et Marie Curie'),
+ array('http://www.upmc.fr/', 'Université Pierre et Marie Curie'),
array('http://www.ibiblio.org/', 'The Public\'s Library and Digital Archive'),
array('http://www.mandrivauser.de', 'Mandrivauser.de'),
array('http://www.hs-esslingen.de/', 'Hochschule Esslingen'),
@@ -316,13 +316,15 @@ function html_donators_list($donators,$anonymous)
//$donators = array_unique($donators);
sort($donators);
- $html = sprintf('<p>%d amazing people <a href="/en/donate/">donated money</a> to Mageia.Org:</p>', $count_donators);
- $html .= '<ul class="ty-ppl-list">';
+ $html = '<ul class="ty-ppl-list">';
foreach ($donators as $p)
$html .= sprintf('<li>%s</li>', $p);
$html .= '</ul>';
- return $html;
+ return array(
+ 'count' => $count_donators,
+ 'list' => $html
+ );
}
/**