From d990ec418d290d04953716f1b4d0adaae99f8807 Mon Sep 17 00:00:00 2001 From: Andrea Veri Date: Sun, 16 Jan 2011 23:59:14 +0100 Subject: [PATCH] Removing an extra parenthesis that was causing a php error. --- foundation.gnome.org/membership/application.wml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/foundation.gnome.org/membership/application.wml b/foundation.gnome.org/membership/application.wml index e1b608e..9b81b4f 100755 --- a/foundation.gnome.org/membership/application.wml +++ b/foundation.gnome.org/membership/application.wml @@ -48,7 +48,7 @@ $bad_elements[] = "summary"; $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"; $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."; }