Fix missing ()

develop
Steve Allison 2013-02-22 19:05:54 +00:00
parent 9af9edf09d
commit 49812d9746
1 changed files with 1 additions and 1 deletions

View File

@ -290,7 +290,7 @@ class defense extends rcube_plugin {
die(); die();
} }
if ($this->ban_httpstatus) && ($this->isBanned($this->ipaddr)) { if (($this->ban_httpstatus) && ($this->isBanned($this->ipaddr))) {
$this->debug("IP already banned"); $this->debug("IP already banned");
$this->sendForbiddenHeader(); $this->sendForbiddenHeader();
} }