Only a small identation work to make the thing more readable.
authorphilippe_mingo <philippe_mingo@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Tue, 9 Oct 2001 11:41:17 +0000 (11:41 +0000)
committerphilippe_mingo <philippe_mingo@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Tue, 9 Oct 2001 11:41:17 +0000 (11:41 +0000)
git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@1556 7612ce4b-ef26-0410-bec9-ea0150e637f0

src/compose.php

index 5c8c2cf3b6c321d2a3c1ed4fca4d6f9db86e93f3..360cd594c33d3eb2ba8e9b67cfd7a178782c6a4e 100644 (file)
              $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;
          $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);
       if ($location_of_buttons == 'top') showComposeButtonRow();
 
       $idents = getPref($data_dir, $username, 'identities');
-      if ($idents != '' && $idents > 1)
-      {
+      if ($idents != '' && $idents > 1) {
          echo "   <TR>\n";
          echo "      <TD BGCOLOR=\"$color[4]\" WIDTH=\"10%\" ALIGN=RIGHT>\n";
          echo _("From:");
          echo "      </TD><TD BGCOLOR=\"$color[4]\" WIDTH=\"90%\">\n";
-        echo "<select name=identity>\n";
-        echo "<option value=default>" . 
-           htmlspecialchars(getPref($data_dir, $username, 'full_name'));
-        $em = getPref($data_dir, $username, 'email_address');
-        if ($em != '')
-           echo htmlspecialchars(' <' . $em . '>') . "\n";
-        for ($i = 1; $i < $idents; $i ++) {
-           echo '<option value="' . $i . '"';
-           if (isset($identity) && $identity == $i)
-              echo ' SELECTED';
-           echo '>';
-           echo htmlspecialchars(getPref($data_dir, $username, 'full_name' . 
-                                         $i));
-           $em = getPref($data_dir, $username, 'email_address' . $i);
-           if ($em != '')
-              echo htmlspecialchars(' <' . $em . '>') . "\n";
-        }
-        echo "</select>\n";
+         echo "<select name=identity>\n";
+         echo "<option value=default>" . 
+         htmlspecialchars(getPref($data_dir, $username, 'full_name'));
+         $em = getPref($data_dir, $username, 'email_address');
+         if ($em != '')
+            echo htmlspecialchars(' <' . $em . '>') . "\n";
+         for ($i = 1; $i < $idents; $i ++) {
+            echo '<option value="' . $i . '"';
+            if (isset($identity) && $identity == $i)
+               echo ' SELECTED';
+            echo '>';
+            echo htmlspecialchars(getPref($data_dir, $username, 'full_name' . 
+                                        $i));
+            $em = getPref($data_dir, $username, 'email_address' . $i);
+            if ($em != '')
+               echo htmlspecialchars(' <' . $em . '>') . "\n";
+         }
+         echo "</select>\n";
          echo "      </TD>\n";
          echo "   </TR>\n";
       }
          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);
 
       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;
+       }
          }
       }
       
       /* Build and return the citation string. */
       return ($start . $orig_from . $end . "\n");
    }   
-?>
+?>
\ No newline at end of file