From 1269889704386de951d7f91eb169eb1e1bb36cc0 Mon Sep 17 00:00:00 2001
From: Ludovic Pouzenc <ludovic@pouzenc.fr>
Date: Sat, 30 Jun 2018 11:10:17 +0200
Subject: Sous-dossier app entre old4 et old5

---
 appli_3_alpha_old/ical.php | 30 ------------------------------
 1 file changed, 30 deletions(-)
 delete mode 100644 appli_3_alpha_old/ical.php

(limited to 'appli_3_alpha_old/ical.php')

diff --git a/appli_3_alpha_old/ical.php b/appli_3_alpha_old/ical.php
deleted file mode 100644
index 1b2d455..0000000
--- a/appli_3_alpha_old/ical.php
+++ /dev/null
@@ -1,30 +0,0 @@
-<?php
-require_once('include/ludo/session_verify.inc.php');
-require_once('include/ical.inc.php');
-
-$res=ERR_ICAL_NO_DATA;
-if ( isset($_SESSION['session_idP']) )
-{
-	$res = generationIcal($_SESSION['session_idP'], $iCal_name, $iCal_content, $errmsg);
-
-	if ( $res === 0 )
-	{
-		header("Content-disposition: attachment; filename=$iCal_name");
-		header("Content-Type: application/force-download");
-		header("Content-Transfer-Encoding: text/ics\n"); // Surtout ne pas enlever le \n
-		header("Content-Length: ". strlen($iCal_content) );
-		header("Pragma: no-cache");
-		header("Cache-Control: must-revalidate, post-check=0, pre-check=0, public");
-		header("Expires: 0");
-		echo $iCal_content;
-		exit();
-	}
-}
-require_once('include/ludo/html_elements.inc.php');
-generate_html_doctype_and_head("G�n�ration iCal");
-echo "<body>\n";
-generate_html_div_errmsg($errmsg);
-?>
-</body>
-</html>
-
-- 
cgit v1.2.3