From: Rob H. <for...@us...> - 2003-01-13 01:33:12
|
Update of /cvsroot/sandweb/sandweb/templates In directory sc8-pr-cvs1:/tmp/cvs-serv25880/templates Modified Files: vcs.html Log Message: wow, there was a bug that actually caused the filename to be displayed in ie and konqueror! ( the variable name was "filename" instead of "password" ). I'm amazed that 1) it worked at all 2) it didn't show up in mozilla <shrug> Index: vcs.html =================================================================== RCS file: /cvsroot/sandweb/sandweb/templates/vcs.html,v retrieving revision 1.6 retrieving revision 1.7 diff -U2 -r1.6 -r1.7 --- vcs.html 6 Jan 2003 01:25:56 -0000 1.6 +++ vcs.html 13 Jan 2003 01:33:09 -0000 1.7 @@ -1,11 +1,12 @@ +<!-- <TMPL_VAR NAME=PROGNAME> --> <table width="100%" border="1" align="center" cellspacing="0" cellpadding="0"> <tr> <center> - <form name="vcs" submit="<TMPL_VAR NAME=PROGNAME>" type="POST"> + <form name="vcs" type="POST"> <input type="hidden" name="action" value="vcs"> <input type="hidden" name="main_window_url" value="<TMPL_VAR NAME=MAIN_WINDOW_URL>"> Please enter VCS password : <br> - <input type="password" name="filename" name="repo_password"> + <input type="password" name="password" name="repo_password"> <TMPL_LOOP NAME="FILENAME_LOOP"> <input type="hidden" name="filename" value="<TMPL_VAR NAME=FILENAME>"> |