fixed syntax error

This commit is contained in:
Jacob G 2016-01-11 20:07:41 -05:00
parent 6d719cfd47
commit f958aceb16

View file

@ -119,7 +119,7 @@ class AccountRequestSubmission {
foreach ($matches[5] as $key => $val) { foreach ($matches[5] as $key => $val) {
$user = $matches[1][$key]; $user = $matches[1][$key];
$comment = trim($val); $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; $success = true;
break; break;
} }