all that work to fix compose in new, and I busted compose in regular.. ;)
authorebullient <ebullient@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Mon, 29 Mar 2004 17:02:29 +0000 (17:02 +0000)
committerebullient <ebullient@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Mon, 29 Mar 2004 17:02:29 +0000 (17:02 +0000)
get changed to post by default (which it was before..)

Yeesh.

Thanks, Seth. I tested every other variation last night, it seems -
but missed this one. Sorry.

git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@6927 7612ce4b-ef26-0410-bec9-ea0150e637f0

src/read_body.php

index 0f3b214435d44059221170fc5a932cffd562a688..11c9c57d6a510af220bb8451b9df93bf863e5e53 100644 (file)
@@ -623,14 +623,14 @@ function formatMenubar($mailbox, $passed_id, $passed_ent_id, $message, $mbx_resp
     // Start form for reply/reply all/forward.. 
     $target = '';
     $on_click='';
-    $method='method="get" ';
+    $method='method="post" ';
     if ($compose_new_win == '1') {
         if ( $javascript_on ) {
           $on_click=' onclick="comp_in_new_form(\''.$comp_uri.'\', this, this.form)"';
           $comp_uri = 'javascript:void(0)';
+          $method='method="get" ';
         } else {
           $target = 'target="_blank"';
-          $method='method="post" ';
         }
     }