Index: server/base_server/wizard.pike =================================================================== RCS file: /cvs/roxen_1.3/server/base_server/wizard.pike,v retrieving revision 1.89 retrieving revision 1.90 diff -c -r1.89 -r1.90 *** wizard.pike 1999/11/28 21:35:29 1.89 --- wizard.pike 1999/12/16 21:47:26 1.90 *************** *** 1,7 **** /* Copyright © 1997, 1998, Idonex AB. * Some modifications by Francesco Chemolli * ! * $Id: wizard.pike,v 1.89 1999/11/28 21:35:29 mast Exp $ * name="Wizard generator"; * doc="This file generates all the nice wizards"; * --- 1,7 ---- /* Copyright © 1997, 1998, Idonex AB. * Some modifications by Francesco Chemolli * ! * $Id: wizard.pike,v 1.90 1999/12/16 21:47:26 mast Exp $ * name="Wizard generator"; * doc="This file generates all the nice wizards"; * *************** *** 492,502 **** // page. Netscape ignores one of them, but IE sends both. Thus we // have to discard the extra value in the IE case. (We simply assume // both values are the same here; maybe it could be done better.) ! id->variables->action = (id->variables->action/"\0")[0]; res = ("\n" ! "
\n" ! " variables->action+"\">\n" " \n" " variables)+"\">\n" "\n" --- 492,505 ---- // page. Netscape ignores one of them, but IE sends both. Thus we // have to discard the extra value in the IE case. (We simply assume // both values are the same here; maybe it could be done better.) ! if (stringp (id->variables->action)) ! id->variables->action = (id->variables->action/"\0")[0]; res = ("\n" ! "\n" + ! (stringp (id->variables->action) ? ! " variables->action+"\">\n" : ! "") + " \n" " variables)+"\">\n" "
\n"