From 248bfebb4a9608e0d8252cd4b28d54049cfa64c6 Mon Sep 17 00:00:00 2001 From: philippe_mingo Date: Tue, 9 Oct 2001 11:41:17 +0000 Subject: [PATCH] Only a small identation work to make the thing more readable. git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@1556 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- src/compose.php | 123 ++++++++++++++++++++++++------------------------ 1 file changed, 61 insertions(+), 62 deletions(-) diff --git a/src/compose.php b/src/compose.php index 5c8c2cf3..360cd594 100644 --- a/src/compose.php +++ b/src/compose.php @@ -106,7 +106,7 @@ $orig_from = trim(substr($orig_from,0,strpos($orig_from,'<'))); $orig_from = str_replace('"','',$orig_from); $orig_from = str_replace("'",'',$orig_from); - $body = getReplyCitation($orig_from) . $body; + $body = getReplyCitation($orig_from) . $body; } return; @@ -195,7 +195,7 @@ $editor_size, $attachments, $subject, $newmail, $use_javascript_addr_book, $send_to_bcc, $reply_id, $mailbox, $from_htmladdr_search, $location_of_buttons, $attachment_dir, - $username, $data_dir, $identity; + $username, $data_dir, $identity; $subject = decodeHeader($subject); $reply_subj = decodeHeader($reply_subj); @@ -224,30 +224,29 @@ if ($location_of_buttons == 'top') showComposeButtonRow(); $idents = getPref($data_dir, $username, 'identities'); - if ($idents != '' && $idents > 1) - { + if ($idents != '' && $idents > 1) { echo " \n"; echo " \n"; echo _("From:"); echo " \n"; - echo "\n"; + echo "\n"; echo " \n"; echo " \n"; } @@ -433,35 +432,35 @@ set_my_charset(); // This is to change all newlines to \n - // We'll change them to \r\n later (in the sendMessage function) - $body = str_replace("\r\n", "\n", $body); - $body = str_replace("\r", "\n", $body); - - // Rewrap $body so that no line is bigger than $editor_size - // This should only really kick in the sqWordWrap function - // if the browser doesn't support "HARD" as the wrap type - // Or, in Opera's case, something goes wrong. - $body = explode("\n", $body); - $newBody = ''; - foreach ($body as $line) { - if( $line <> '-- ' ) - $line = rtrim($line); - if (strlen($line) <= $editor_size + 1) - $newBody .= $line . "\n"; - else { - sqWordWrap($line, $editor_size) . "\n"; - $newBody .= $line; - } - } - $body = $newBody; - + // We'll change them to \r\n later (in the sendMessage function) + $body = str_replace("\r\n", "\n", $body); + $body = str_replace("\r", "\n", $body); + + // Rewrap $body so that no line is bigger than $editor_size + // This should only really kick in the sqWordWrap function + // if the browser doesn't support "HARD" as the wrap type + // Or, in Opera's case, something goes wrong. + $body = explode("\n", $body); + $newBody = ''; + foreach ($body as $line) { + if( $line <> '-- ' ) + $line = rtrim($line); + if (strlen($line) <= $editor_size + 1) + $newBody .= $line . "\n"; + else { + sqWordWrap($line, $editor_size) . "\n"; + $newBody .= $line; + } + } + $body = $newBody; + do_hook("compose_send"); - + if (! sendMessage($send_to, $send_to_cc, $send_to_bcc, $subject, $body, $reply_id)) { - showInputForm(); - exit(); - } - Header("Location: right_main.php?mailbox=$urlMailbox&sort=$sort&startMessage=1"); + showInputForm(); + exit(); + } + Header("Location: right_main.php?mailbox=$urlMailbox&sort=$sort&startMessage=1"); } else { //$imapConnection = sqimap_login($username, $key, $imapServerAddress, $imapPort, 0); displayPageHeader($color, $mailbox); @@ -479,21 +478,21 @@ if (isset($send_to_search) && is_array($send_to_search)) { foreach ($send_to_search as $k => $v) { - if (substr($k, 0, 1) == 'T') { + if (substr($k, 0, 1) == 'T') { if ($send_to) $send_to .= ', '; $send_to .= $v; - } - elseif (substr($k, 0, 1) == 'C') { - if ($send_to_cc) - $send_to_cc .= ', '; - $send_to_cc .= $v; - } - elseif (substr($k, 0, 1) == 'B') { - if ($send_to_bcc) - $send_to_bcc .= ', '; - $send_to_bcc .= $v; - } + } + elseif (substr($k, 0, 1) == 'C') { + if ($send_to_cc) + $send_to_cc .= ', '; + $send_to_cc .= $v; + } + elseif (substr($k, 0, 1) == 'B') { + if ($send_to_bcc) + $send_to_bcc .= ', '; + $send_to_bcc .= $v; + } } } @@ -586,4 +585,4 @@ /* Build and return the citation string. */ return ($start . $orig_from . $end . "\n"); } -?> +?> \ No newline at end of file -- 2.25.1