Fixed typo
svn path=/trunk/; revision=390
This commit is contained in:
parent
8c6c339961
commit
7354d4b272
1 changed files with 3 additions and 3 deletions
|
@ -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>
|
Loading…
Reference in a new issue