From 21482ab5f54a37924321f3a6862bddf22e0ff15f Mon Sep 17 00:00:00 2001 From: Damien Lallement Date: Mon, 21 Nov 2011 13:50:52 +0000 Subject: - fix typo to display 'anonymous' - update call to 'html_donators_list' to provide '$anonymous' --- donators.inc.php | 8 ++++---- en/thank-you/index.php | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/donators.inc.php b/donators.inc.php index 2f0bb1e1e..fbc7bc476 100644 --- a/donators.inc.php +++ b/donators.inc.php @@ -4,9 +4,9 @@ /** */ -$anonymous = 15; +$anonymous = '15'; $donators = array( - 'Anonymous (x $anonymous)', + 'Anonymous (x '.$anonymous.')', 'Pascal Vilarem (MaĆ¢t)', 'Vicente Salvador Cubedo', 'Samuel Verschelde (Stormi)', @@ -300,9 +300,9 @@ $orgs = array( * * @return string */ -function html_donators_list($donators) +function html_donators_list($donators,$anonymous) { - $count_donators = count($donators)+$anonymous; + $count_donators = count($donators)+$anonymous-1; // -1 because 'anonymous' is count 1 more time in 'donators()' //$donators = array_unique($donators); sort($donators); diff --git a/en/thank-you/index.php b/en/thank-you/index.php index c7ea351da..8a0a2d0ab 100644 --- a/en/thank-you/index.php +++ b/en/thank-you/index.php @@ -26,7 +26,7 @@

It would not have either, without help and donation from many people and organizations. This page is here to remind of their contribution to this project.

- +

Great places and teams that welcomed us and offerred us some tea, coffee, seats and advice (mostly in Paris for now):

-- cgit v1.2.1