From d01bcf48d75c721276f547a5c17d1476aa053c48 Mon Sep 17 00:00:00 2001 From: Benjamin Southall Date: Wed, 14 Dec 2016 05:42:12 +0900 Subject: [PATCH] Changing wording of post filtering when action is not set from throttled to blocked at user request. --- inc/filters.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/filters.php b/inc/filters.php index 22843f10..b4781958 100644 --- a/inc/filters.php +++ b/inc/filters.php @@ -145,7 +145,7 @@ class Filter { } if (isset ($this->action)) switch($this->action) { case 'reject': - error(isset($this->message) ? $this->message : 'Posting throttled by filter.'); + error(isset($this->message) ? $this->message : 'Posting blocked by filter.'); case 'ban': if (!isset($this->reason)) error('The ban action requires a reason.');