summaryrefslogtreecommitdiff
path: root/appli_3_alpha_old/app/ical.php
diff options
context:
space:
mode:
Diffstat (limited to 'appli_3_alpha_old/app/ical.php')
-rw-r--r--appli_3_alpha_old/app/ical.php10
1 files changed, 8 insertions, 2 deletions
diff --git a/appli_3_alpha_old/app/ical.php b/appli_3_alpha_old/app/ical.php
index 1b2d455..f2aeb26 100644
--- a/appli_3_alpha_old/app/ical.php
+++ b/appli_3_alpha_old/app/ical.php
@@ -1,5 +1,6 @@
<?php
-require_once('include/ludo/session_verify.inc.php');
+$_SESSION['session_idP'] = 1;
+//require_once('include/ludo/session_verify.inc.php');
require_once('include/ical.inc.php');
$res=ERR_ICAL_NO_DATA;
@@ -11,11 +12,16 @@ if ( isset($_SESSION['session_idP']) )
{
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-Transfer-Encoding: text/calendar\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");
+ /*
+ header("Accept-Ranges: bytes");
+ header("Content-Length: ". strlen($iCal_content) );
+ header("Content-Type: text/calendar");
+ */
echo $iCal_content;
exit();
}