Subversion Repositories DevTools

Rev

Rev 1281 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1281 Rev 1337
Line 58... Line 58...
58
<%
58
<%
59
'-----------------------  MAIN LINE  ---------------------------
59
'-----------------------  MAIN LINE  ---------------------------
60
 
60
 
61
'--- Process submition ---
61
'--- Process submition ---
62
If (Request("pv_id") <> "") AND (Request("patch_id") <> "") Then
62
If (Request("pv_id") <> "") AND (Request("patch_id") <> "") Then
63
   ' All mendatory parameters FOUND
63
   ' All mandatory parameters FOUND
64
   Call RemovePatch ( Request("pv_id"), Request("patch_id") )
64
   Call RemovePatch ( Request("pv_id"), Request("patch_id") )
65
 
65
 
66
   Response.Redirect("patches.asp?pv_id="& Request("pv_id") &"&rtag_id="& Request("rtag_id"))
66
   Response.Redirect("patches.asp?pv_id="& Request("pv_id") &"&rtag_id="& Request("rtag_id"))
67
Else
67
Else
68
   Response.write "Some mendatory parameters are missing!" & "<br>" 'TODO
68
   Response.write "Some mandatory parameters are missing!" & "<br>" 'TODO
69
   Response.write QSTR_All
69
   Response.write QSTR_All
70
 
70
 
71
End If
71
End If
72
%>
72
%>
73
 
73