Removing an extra parenthesis that was causing a php error.

This commit is contained in:
Andrea Veri 2011-01-16 23:59:14 +01:00
parent d5ef50199c
commit d990ec418d

View file

@ -48,7 +48,7 @@
$bad_elements[] = "summary"; $bad_elements[] = "summary";
$errors[] = "Please enter a list of areas of GNOME to which you have made a non-trivial contribution."; $errors[] = "Please enter a list of areas of GNOME to which you have made a non-trivial contribution.";
} }
if ((!$contacts || $contacts == "") { if (!$contacts || $contacts == "") {
$bad_elements[] = "contacts"; $bad_elements[] = "contacts";
$errors[] = "Please enter a list of individuals with their e-mails who can confirm your contributions or indicate us how the Membership Committee can verify your contributions."; $errors[] = "Please enter a list of individuals with their e-mails who can confirm your contributions or indicate us how the Membership Committee can verify your contributions.";
} }