mirror of
https://github.com/scratchfoundation/swiki-confirmaccount.git
synced 2024-12-04 12:51:01 -05:00
fixed syntax error
This commit is contained in:
parent
6d719cfd47
commit
f958aceb16
1 changed files with 1 additions and 1 deletions
|
@ -119,7 +119,7 @@ class AccountRequestSubmission {
|
|||
foreach ($matches[5] as $key => $val) {
|
||||
$user = $matches[1][$key];
|
||||
$comment = trim($val);
|
||||
if ((strtolower($user) == strtolower(htmlspecialchars($this->userName)) && $this->stringContainsArray($comment, $codes)) {
|
||||
if (strtolower($user) == strtolower(htmlspecialchars($this->userName)) && $this->stringContainsArray($comment, $codes)) {
|
||||
$success = true;
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue