Fixed typo

svn path=/trunk/; revision=390
This commit is contained in:
Baris Cicek 2007-03-02 19:56:58 +00:00
parent 8c6c339961
commit 7354d4b272

View file

@ -58,11 +58,11 @@
$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.";
}
if ($contacts && $contacts != "" && strpos ($contacts, '@') === FALSE) {
if ($contacts && $contacts != "" && (strpos ($contacts, '@') === FALSE)) {
$bad_elements[] = "contacts";
$errors[] = "Please provide e-mails of the contacts you've provided.";
}
$obfuscated_contact = preg_replace("/@", " AT ", $pointers);
$obfuscated_contact = preg_replace("/@/", " AT ", $pointers);
if ($spam != "not spam") {
$bad_elements[] = "spam";
@ -305,4 +305,4 @@
<?php } ?>
</body>
</html>
</html>