From: lkehresman Date: Thu, 27 Jul 2000 13:11:33 +0000 (+0000) Subject: fixed problem with sending subjects with a '. X-Git-Url: https://vcs.fsf.org/?p=squirrelmail.git;a=commitdiff_plain;h=bf99108f830f678dd1be5fd875447b3a8ae51bca fixed problem with sending subjects with a '. added a urlencode($mailbox) to a link in download.php git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@644 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- diff --git a/AUTHORS b/AUTHORS index 15fb9feb..805f18a8 100644 --- a/AUTHORS +++ b/AUTHORS @@ -21,7 +21,3 @@ Swedish: Tobias Ekbom (tobias@vallcom.net) Dutch: Arjan Halma (arjan@halma.nl) Portugese (Brazil): Henrique Moura (henriquemoura@hotmail.com) - - Help System: - ------------ - Lewis Bergman diff --git a/config/default_theme.php b/config/default_theme.php deleted file mode 100644 index cdaa67ca..00000000 --- a/config/default_theme.php +++ /dev/null @@ -1,31 +0,0 @@ - diff --git a/functions/smtp.php b/functions/smtp.php index fae9ea73..868c2620 100644 --- a/functions/smtp.php +++ b/functions/smtp.php @@ -132,7 +132,7 @@ $bcc_list = getLineOfAddrs($bcc); /* Encoding 8-bit characters and making from line */ - $subject = encodeHeader($subject); + $subject = stripslashes(encodeHeader($subject)); if ($from == "") $from = "<$from_addr>"; else diff --git a/src/download.php b/src/download.php index 6f5c4266..c754caf0 100644 --- a/src/download.php +++ b/src/download.php @@ -32,7 +32,7 @@ echo "
"; echo "
"; echo _("Viewing a text attachment") . " - "; - echo "". _("View message") . ""; + echo "". _("View message") . ""; echo "
"; echo "
"; $urlmailbox = urlencode($mailbox);