aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorScott Ullrich <sullrich@pfsense.org>2006-02-04 01:19:25 +0000
committerScott Ullrich <sullrich@pfsense.org>2006-02-04 01:19:25 +0000
commitb6d210c23e83eb99b20f3a63cf654b6977fa9d62 (patch)
tree795751904a6878f3548fb004eefdb0a3a895c776
parent5da17152f3a6201fca34674f9801a29ee4c9b296 (diff)
downloadpfsense-packages-b6d210c23e83eb99b20f3a63cf654b6977fa9d62.tar.gz
pfsense-packages-b6d210c23e83eb99b20f3a63cf654b6977fa9d62.tar.bz2
pfsense-packages-b6d210c23e83eb99b20f3a63cf654b6977fa9d62.zip
Reduce breaking poing to 25 chars
-rw-r--r--packages/spamd_db.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/spamd_db.php b/packages/spamd_db.php
index ffa42ca9..22cdf786 100644
--- a/packages/spamd_db.php
+++ b/packages/spamd_db.php
@@ -213,7 +213,7 @@ if (typeof getURL == 'undefined') {
/* if string is really long allow it to be wrapped by
* replacing @ with space@
*/
- if(strlen($col)>40) {
+ if(strlen($col)>25) {
$col = str_replace("@"," @",$col);
$col = str_replace("-"," -",$col);
$col = str_replace("."," .",$col);