diff options
Diffstat (limited to 'program/steps/mail')
-rw-r--r-- | program/steps/mail/addcontact.inc | 2 | ||||
-rw-r--r-- | program/steps/mail/compose.inc | 6 | ||||
-rw-r--r-- | program/steps/mail/func.inc | 2 | ||||
-rw-r--r-- | program/steps/mail/get.inc | 2 | ||||
-rw-r--r-- | program/steps/mail/list.inc | 2 | ||||
-rw-r--r-- | program/steps/mail/mark.inc | 2 | ||||
-rw-r--r-- | program/steps/mail/move_del.inc | 2 | ||||
-rw-r--r-- | program/steps/mail/sendmail.inc | 2 | ||||
-rw-r--r-- | program/steps/mail/show.inc | 2 | ||||
-rw-r--r-- | program/steps/mail/upload.inc | 2 | ||||
-rw-r--r-- | program/steps/mail/viewsource.inc | 2 |
11 files changed, 13 insertions, 13 deletions
diff --git a/program/steps/mail/addcontact.inc b/program/steps/mail/addcontact.inc index 7f1102412..465ed3125 100644 --- a/program/steps/mail/addcontact.inc +++ b/program/steps/mail/addcontact.inc @@ -6,7 +6,7 @@ | | | This file is part of the RoundCube Webmail client | | Copyright (C) 2005, RoundCube Dev. - Switzerland | - | All rights reserved. | + | Licensed under the GNU GPL | | | | PURPOSE: | | Add the submitted contact to the users address book | diff --git a/program/steps/mail/compose.inc b/program/steps/mail/compose.inc index b7e91cb2f..1848acf23 100644 --- a/program/steps/mail/compose.inc +++ b/program/steps/mail/compose.inc @@ -6,7 +6,7 @@ | | | This file is part of the RoundCube Webmail client | | Copyright (C) 2005, RoundCube Dev. - Switzerland | - | All rights reserved. | + | Licensed under the GNU GPL | | | | PURPOSE: | | Compose a new mail message with all headers and attachments | @@ -283,7 +283,7 @@ function rcmail_compose_body($attrib) // use posted message body if ($_POST['_message']) - $body = $_POST['_message']; + $body = stripslashes($_POST['_message']); // compose reply-body else if (is_array($REPLY_MESSAGE['parts'])) @@ -371,7 +371,7 @@ function rcmail_compose_subject($attrib) // use subject from post if ($_POST['_subject']) - $subject = $_POST['_subject']; + $subject = stripslashes($_POST['_subject']); // create a reply-subject else if (isset($REPLY_MESSAGE['subject'])) diff --git a/program/steps/mail/func.inc b/program/steps/mail/func.inc index d53b8b0c3..78b61377b 100644 --- a/program/steps/mail/func.inc +++ b/program/steps/mail/func.inc @@ -6,7 +6,7 @@ | | | This file is part of the RoundCube Webmail client | | Copyright (C) 2005, RoundCube Dev. - Switzerland | - | All rights reserved. | + | Licensed under the GNU GPL | | | | PURPOSE: | | Provide webmail functionality and GUI objects | diff --git a/program/steps/mail/get.inc b/program/steps/mail/get.inc index 018ae2e4c..9a86177aa 100644 --- a/program/steps/mail/get.inc +++ b/program/steps/mail/get.inc @@ -6,7 +6,7 @@ | | | This file is part of the RoundCube Webmail client | | Copyright (C) 2005, RoundCube Dev. - Switzerland | - | All rights reserved. | + | Licensed under the GNU GPL | | | | PURPOSE: | | Delivering a specific part of a mail message | diff --git a/program/steps/mail/list.inc b/program/steps/mail/list.inc index 58a1bb84e..0ddf5cc11 100644 --- a/program/steps/mail/list.inc +++ b/program/steps/mail/list.inc @@ -6,7 +6,7 @@ | | | This file is part of the RoundCube Webmail client | | Copyright (C) 2005, RoundCube Dev. - Switzerland | - | All rights reserved. | + | Licensed under the GNU GPL | | | | PURPOSE: | | Send message list to client (as remote response) | diff --git a/program/steps/mail/mark.inc b/program/steps/mail/mark.inc index 2dadb53eb..be9814ecb 100644 --- a/program/steps/mail/mark.inc +++ b/program/steps/mail/mark.inc @@ -6,7 +6,7 @@ | | | This file is part of the RoundCube Webmail client | | Copyright (C) 2005, RoundCube Dev. - Switzerland | - | All rights reserved. | + | Licensed under the GNU GPL | | | | PURPOSE: | | Mark the submitted messages with the specified flag | diff --git a/program/steps/mail/move_del.inc b/program/steps/mail/move_del.inc index e090d305b..4972478f1 100644 --- a/program/steps/mail/move_del.inc +++ b/program/steps/mail/move_del.inc @@ -6,7 +6,7 @@ | | | This file is part of the RoundCube Webmail client | | Copyright (C) 2005, RoundCube Dev. - Switzerland | - | All rights reserved. | + | Licensed under the GNU GPL | | | | PURPOSE: | | Move the submitted messages to a specific mailbox or delete them | diff --git a/program/steps/mail/sendmail.inc b/program/steps/mail/sendmail.inc index 789001e14..e33593139 100644 --- a/program/steps/mail/sendmail.inc +++ b/program/steps/mail/sendmail.inc @@ -6,7 +6,7 @@ | | | This file is part of the RoundCube Webmail client | | Copyright (C) 2005, RoundCube Dev. - Switzerland | - | All rights reserved. | + | Licensed under the GNU GPL | | | | PURPOSE: | | Compose a new mail message with all headers and attachments | diff --git a/program/steps/mail/show.inc b/program/steps/mail/show.inc index de4f2b4cb..d9ff5d443 100644 --- a/program/steps/mail/show.inc +++ b/program/steps/mail/show.inc @@ -6,7 +6,7 @@ | | | This file is part of the RoundCube Webmail client | | Copyright (C) 2005, RoundCube Dev. - Switzerland | - | All rights reserved. | + | Licensed under the GNU GPL | | | | PURPOSE: | | Display a mail message similar as a usual mail application does | diff --git a/program/steps/mail/upload.inc b/program/steps/mail/upload.inc index 4f1eb3dab..3ae88fad6 100644 --- a/program/steps/mail/upload.inc +++ b/program/steps/mail/upload.inc @@ -6,7 +6,7 @@ | | | This file is part of the RoundCube Webmail client | | Copyright (C) 2005, RoundCube Dev. - Switzerland | - | All rights reserved. | + | Licensed under the GNU GPL | | | | PURPOSE: | | Handle file-upload and make them available as attachments | diff --git a/program/steps/mail/viewsource.inc b/program/steps/mail/viewsource.inc index 8b8c90cd1..0fcb1f9c5 100644 --- a/program/steps/mail/viewsource.inc +++ b/program/steps/mail/viewsource.inc @@ -6,7 +6,7 @@ | | | This file is part of the RoundCube Webmail client | | Copyright (C) 2005, RoundCube Dev. - Switzerland | - | All rights reserved. | + | Licensed under the GNU GPL | | | | PURPOSE: | | Display a mail message similar as a usual mail application does | |