From 98f0484f917c71536d9e7c5aba42df08b2a87217 Mon Sep 17 00:00:00 2001 From: fidian Date: Thu, 1 Feb 2001 00:35:21 +0000 Subject: [PATCH] Removed newline eraser workaround for Konqueror. Removed line of code that replaced backslashes with backslashes.... hmmm. git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@1022 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- src/compose.php | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/compose.php b/src/compose.php index 12b72be2..04010d84 100644 --- a/src/compose.php +++ b/src/compose.php @@ -116,8 +116,6 @@ $body = $bodyTop . $body; } - $body = ereg_replace('\\\\', '\\\\', $body); - return; } @@ -400,7 +398,6 @@ $HTTP_POST_FILES['attachfile']['tmp_name'] != 'none') $AttachFailure = saveAttachedFiles(); if (checkInput(false) && ! isset($AttachFailure)) { - $mailbox = ereg_replace("([\n|\r])", '', $mailbox); $urlMailbox = urlencode ($mailbox); if (! isset($reply_id)) $reply_id = 0; -- 2.25.1