[Netpass-devel] NetPass/www/htdocs/Admin qc.mhtml,1.26,1.27
Brought to you by:
jeffmurphy
From: jeff m. <jef...@us...> - 2005-09-07 15:24:56
|
Update of /cvsroot/netpass/NetPass/www/htdocs/Admin In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1085/www/htdocs/Admin Modified Files: qc.mhtml Log Message: bug in qc, cant change results status, due to move away from cookies Index: qc.mhtml =================================================================== RCS file: /cvsroot/netpass/NetPass/www/htdocs/Admin/qc.mhtml,v retrieving revision 1.26 retrieving revision 1.27 diff -u -d -r1.26 -r1.27 --- qc.mhtml 22 Aug 2005 19:26:08 -0000 1.26 +++ qc.mhtml 7 Sep 2005 15:24:46 -0000 1.27 @@ -21,6 +21,7 @@ <script><!-- setWhereAmI('Quarantine Control'); +var session_id = "<%$m->session->{_session_id}%>"; --></script> <%perl> @@ -98,7 +99,8 @@ if (ma && rid) { var o = document.getElementById('results-status-'+rid); if (o) { - var url = "cmd/setresult.mhtml?printable=2&ma="+ma+"&rid="+rid+"&st="+o.value; + var url = "cmd/setresult.mhtml?printable=2&ma="+ma+"&rid="+rid+"&st="+o.value + + "&npsess=" + session_id; xmlhttp.open("GET", url, true); xmlhttp.onreadystatechange = function() { if (xmlhttp.readyState == 4) { |