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:
parent
3062d7b29f
commit
3f8a4ae4e6
2 changed files with 6 additions and 2 deletions
|
@ -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.
|
||||
|
|
|
@ -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"]." <".$email."></li>\n";
|
||||
}
|
||||
echo " </ul>\n";
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue