Removed broken <quote who=""> junk
authorfidian <fidian@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Wed, 12 Sep 2001 23:27:31 +0000 (23:27 +0000)
committerfidian <fidian@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Wed, 12 Sep 2001 23:27:31 +0000 (23:27 +0000)
git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@1502 7612ce4b-ef26-0410-bec9-ea0150e637f0

src/compose.php

index af429d431346cbd6100ea63c072717ccfa739f7f..8f6e46937703351c425eaec0db585a2ca88df6f4 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 = "<quote who=\"$orig_from\">\n\n$body";
+            $body = $orig_from . ' ' . _('said') . ":\n" . $body;
          }
          
          return;
          echo "      <input type=submit name=\"html_addr_search\" value=\""._("Addresses")."\">";
       }   
       echo "\n    <INPUT TYPE=SUBMIT NAME=send VALUE=\"". _("Send") . "\">\n";
-      echo "\n    ". _("Priority") .":<select name=\"mailprio\">".
-           "\n                        <option value=1>". _("High") ."</option>".
-           "\n                        <option value=3 selected>". _("Normal") ."</option>".
-           "\n                        <option value=5>". _("Low") ."</option>".
-           "\n                      </select>";
       
       do_hook("compose_button_row");
 
         
          do_hook("compose_send");
 
-         if (! sendMessage($send_to, $send_to_cc, $send_to_bcc, $subject, $body, $reply_id, $mailprio)) {
+         if (! sendMessage($send_to, $send_to_cc, $send_to_bcc, $subject, $body, $reply_id)) {
            showInputForm(); 
            exit();
         }