|
@@ -444,7 +444,8 @@
|
|
$body = explode("\n", $body);
|
|
$body = explode("\n", $body);
|
|
$newBody = '';
|
|
$newBody = '';
|
|
foreach ($body as $line) {
|
|
foreach ($body as $line) {
|
|
- $line = rtrim($line);
|
|
|
|
|
|
+ if( $line <> '-- ' )
|
|
|
|
+ $line = rtrim($line);
|
|
if (strlen($line) <= $editor_size + 1)
|
|
if (strlen($line) <= $editor_size + 1)
|
|
$newBody .= $line . "\n";
|
|
$newBody .= $line . "\n";
|
|
else {
|
|
else {
|