aboutsummaryrefslogtreecommitdiffstats
path: root/config/spamd
diff options
context:
space:
mode:
authordoktornotor <notordoktor@gmail.com>2015-10-02 16:14:55 +0200
committerdoktornotor <notordoktor@gmail.com>2015-10-02 16:14:55 +0200
commit79ef5630ed99d3fd5aa16f41a74815ea759039b7 (patch)
tree48c111fcfafb2981e07344f57b0c0ef8982fb88b /config/spamd
parent83fdd2ed2081f9065bf4867eb55737babd7107b4 (diff)
downloadpfsense-packages-79ef5630ed99d3fd5aa16f41a74815ea759039b7.tar.gz
pfsense-packages-79ef5630ed99d3fd5aa16f41a74815ea759039b7.tar.bz2
pfsense-packages-79ef5630ed99d3fd5aa16f41a74815ea759039b7.zip
Fix input error message
Diffstat (limited to 'config/spamd')
-rw-r--r--config/spamd/spamd.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/config/spamd/spamd.inc b/config/spamd/spamd.inc
index a7b79c20..548a2934 100644
--- a/config/spamd/spamd.inc
+++ b/config/spamd/spamd.inc
@@ -406,7 +406,7 @@ function spamd_validate_input($post, &$input_errors) {
if (isset($post['greyexp']) && $post['greyexp'] != "") {
if (!is_numericint($post['greyexp']) || $post['greyexp'] < 1) {
- $input_errors[] = "'White Exp' must be a positive integer or empty.";
+ $input_errors[] = "'Grey Expiration' must be a positive integer or empty.";
}
}