File indexing completed on 2024-04-28 17:10:15

0001 <?php
0002 
0003 include("gfx3/lib.php");
0004 
0005 $idcontent = EHeaderDataParser::db_get("id");
0006 
0007 $postdata = array(
0008   "contentid" => $idcontent
0009   );
0010 
0011 $client = new OCSClient();
0012 $client->set_auth_info(EUser::nick(),EUser::password());
0013 $client->set_post_data($postdata);
0014 $result = $client->post("v1/content/delete/$idcontent");
0015 
0016 header("Location: /gamelist.php/user/".EUser::nick());
0017 
0018 ?>