Metod GET instead POST

speckados <[email protected]> 12 Sep 2003 07:14:41 -0000
Newsgroups gmane.comp.web.oscommerce.general
Message-ID <d496af37954f71dbe434ab791d5bef90@osCommerce-Forums>
This message was sent from: General Support
http://forums.oscommerce.com/viewtopic.php?p=228274#228274
----------------------------------------------------------------

I've developed five months ago, a module for spanish bank. (Simcaixa module).

I had to modify a checkout_confimation.php for includi this too allowed metod GET (this bank need send From wiht GET)

[code]if ($$payment->code == 'simcaixa') {
  echo tep_draw_form('checkout_confirmation', $form_action_url, 'get');
} else {
  echo tep_draw_form('checkout_confirmation', $form_action_url, 'post');
}
l[/code]

Now install 2.2.MS2 and see that code on this file it's firent.

I need use this module with GET on form, but I'm not looking where I can to change this code.

Any ideas?