From 0fa507f1ee8bfa85f916279487eab20d54782e84 Mon Sep 17 00:00:00 2001 From: philippe_mingo Date: Mon, 24 Sep 2001 14:55:50 +0000 Subject: [PATCH] This closes bug #453335 git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@1522 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- src/compose.php | 3 ++- src/options_personal.php | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/compose.php b/src/compose.php index 8a348b70..9ebb5ded 100644 --- a/src/compose.php +++ b/src/compose.php @@ -444,7 +444,8 @@ $body = explode("\n", $body); $newBody = ''; foreach ($body as $line) { - $line = rtrim($line); + if( $line <> '-- ' ) + $line = rtrim($line); if (strlen($line) <= $editor_size + 1) $newBody .= $line . "\n"; else { diff --git a/src/options_personal.php b/src/options_personal.php index e5bab679..3a40f283 100644 --- a/src/options_personal.php +++ b/src/options_personal.php @@ -103,7 +103,7 @@ if ( $prefix_sig ) echo ' checked'; echo '>  ' . - _( "Prefix signature with '--' ?" ) . '
'; + _( "Prefix signature with '-- ' ?" ) . '
'; echo "\n
"; ?> -- 2.25.1