Fix statement brackets

develop
Steve Allison 2013-02-20 21:09:12 +00:00
parent 4ae6625cce
commit 1236cc5c3b
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ class defense extends rcube_plugin {
*/ */
private function isIPinArray($ip, $array) { private function isIPinArray($ip, $array) {
foreach ($array as $value) { foreach ($array as $value) {
if (strpos($value, '/') === false) && ($ip == $value) { return true; } if ((strpos($value, '/') === false) && ($ip == $value)) { return true; }
if (isIPinCIDR($ip, $value)) { return true; } if (isIPinCIDR($ip, $value)) { return true; }
} }
return false; return false;