From: Chris W. <la...@us...> - 2005-03-29 16:56:04
|
Update of /cvsroot/openinteract/OpenInteract2/sample/website/template In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29270/sample/website/template Modified Files: form_begin Log Message: passthru the URL_PARAMS when creating a form action URL Index: form_begin =================================================================== RCS file: /cvsroot/openinteract/OpenInteract2/sample/website/template/form_begin,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** form_begin 5 Oct 2004 02:00:55 -0000 1.3 --- form_begin 29 Mar 2005 16:55:55 -0000 1.4 *************** *** 1,6 **** [%- DEFAULT method = 'POST'; ! DEFAULT form_url = OI.make_url( BASE = BASE, ! ACTION = ACTION, ! TASK = TASK ); -%] <form action="[% form_url %]" method="[% method %]" [%- IF onsubmit %] onsubmit="[% onsubmit %]"[% END -%] --- 1,5 ---- [%- DEFAULT method = 'POST'; ! DEFAULT form_url = OI.make_url( ACTION = ACTION, TASK = TASK, ! BASE = BASE, URL_PARAMS = URL_PARAMS ); -%] <form action="[% form_url %]" method="[% method %]" [%- IF onsubmit %] onsubmit="[% onsubmit %]"[% END -%] |