From 49812d9746fa1866133cce5ae0dc9793952a8c4d Mon Sep 17 00:00:00 2001 From: Steve Allison Date: Fri, 22 Feb 2013 19:05:54 +0000 Subject: [PATCH] Fix missing () --- defense.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/defense.php b/defense.php index f35a988..b734f3d 100644 --- a/defense.php +++ b/defense.php @@ -290,7 +290,7 @@ class defense extends rcube_plugin { die(); } - if ($this->ban_httpstatus) && ($this->isBanned($this->ipaddr)) { + if (($this->ban_httpstatus) && ($this->isBanned($this->ipaddr))) { $this->debug("IP already banned"); $this->sendForbiddenHeader(); }