Update of /cvsroot/sandweb/sandweb/templates
In directory sc8-pr-cvs1:/tmp/cvs-serv26186/templates
Modified Files:
popup_header.html
Log Message:
so weird.. IE doesn't seem to like having the "submit" attribute in
the form tag. It's not a huge deal, I guess, default is to send it
back to the CGI from whence it came.
It'll be an issue if someone wants to have multiple CGIs I guess, I
could see this being useful for tying into a bugtracker or something,
but we can burn that bridge when we come to it.
I'm just going to remove the "submit" attribute for now, until I can
figure out what it is IE is choking on.
Index: popup_header.html
===================================================================
RCS file: /cvsroot/sandweb/sandweb/templates/popup_header.html,v
retrieving revision 1.2
retrieving revision 1.3
diff -U2 -r1.2 -r1.3
--- popup_header.html 13 Aug 2002 19:04:12 -0000 1.2
+++ popup_header.html 13 Jan 2003 01:34:46 -0000 1.3
@@ -5,5 +5,5 @@
}
</script>
-<form method="get" submit="<TMPL_VAR NAME=PROGNAME>" name="browse" onsubmit="myOpenWindow()" target="popUp">
+<form name="browse" method="get" onsubmit="myOpenWindow()" target="popUp">
|