From: ebullient Date: Mon, 29 Mar 2004 17:02:29 +0000 (+0000) Subject: all that work to fix compose in new, and I busted compose in regular.. ;) X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=ee66175d7ebd26c88517ea4c6cfb8a2ddcad32fa;p=squirrelmail.git all that work to fix compose in new, and I busted compose in regular.. ;) 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 --- diff --git a/src/read_body.php b/src/read_body.php index 0f3b2144..11c9c57d 100644 --- a/src/read_body.php +++ b/src/read_body.php @@ -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" '; } }