summaryrefslogtreecommitdiff
path: root/appli_3_alpha_old/ical.php
diff options
context:
space:
mode:
authorLudovic Pouzenc <ludovic@pouzenc.fr>2018-06-30 10:06:47 +0200
committerLudovic Pouzenc <ludovic@pouzenc.fr>2018-06-30 10:40:27 +0200
commit679551b7b545a72d376d9e60a8f3da66e44a6855 (patch)
tree92a6efbe3910650dd210f6f0e1edbd28502ea255 /appli_3_alpha_old/ical.php
parent71b503f07007346eda3d1da71d4a64f31f13d846 (diff)
download2007-AWOR-679551b7b545a72d376d9e60a8f3da66e44a6855.tar.gz
2007-AWOR-679551b7b545a72d376d9e60a8f3da66e44a6855.tar.bz2
2007-AWOR-679551b7b545a72d376d9e60a8f3da66e44a6855.zip
Version alpha_old2 2007-02-04+10:57:50 - 2007-02-21+19:05:18
Diffstat (limited to 'appli_3_alpha_old/ical.php')
-rw-r--r--appli_3_alpha_old/ical.php28
1 files changed, 14 insertions, 14 deletions
diff --git a/appli_3_alpha_old/ical.php b/appli_3_alpha_old/ical.php
index a5f0488..d2928b4 100644
--- a/appli_3_alpha_old/ical.php
+++ b/appli_3_alpha_old/ical.php
@@ -1,23 +1,23 @@
<?php
require_once('include/ludo/session_verify.inc.php');
require_once('include/ical.inc.php');
-
-$res=ERR_ICAL_NO_DATA;
-if ( isset($_SESSION['idP']) )
+
+$res=ERR_ICAL_NO_DATA;
+if ( isset($_SESSION['idP']) )
{
$res = generationIcal($_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");
+
+ 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();
+ exit();
}
}
require_once('html_elements.inc.php');
@@ -27,4 +27,4 @@ generate_html_div_errmsg($errmsg);
?>
</body>
</html>
-
+