fix for email addresses

2005-11-13  Vincent Untz  <vuntz@gnome.org>

	* foundation.gnome.org/membership/members.wml: fix for email addresses
This commit is contained in:
Vincent Untz 2005-11-13 15:12:20 +00:00 committed by Vincent Untz
parent 3062d7b29f
commit 3f8a4ae4e6
2 changed files with 6 additions and 2 deletions

View file

@ -1,3 +1,7 @@
2005-11-13 Vincent Untz <vuntz@gnome.org>
* foundation.gnome.org/membership/members.wml: fix for email addresses
2005-11-13 Vincent Untz <vuntz@gnome.org>
Make the membership list dynamic.

View file

@ -74,8 +74,8 @@ if ($members === FALSE) {
$antispam = array(".", "@");
foreach ($members as $member) {
$email = str_replace($antispam, "", $member["email"]);
echo " <li>".$member["firstname"]." ".$member["lastname"]." <".$email."></li>\n";
$email = str_replace($antispam, " ", $member["email"]);
echo " <li>".$member["firstname"]." ".$member["lastname"]." &lt;".$email."&gt;</li>\n";
}
echo " </ul>\n";
}