summaryrefslogtreecommitdiff
path: root/appli_3_alpha_old/ical.php
diff options
context:
space:
mode:
authorLudovic Pouzenc <ludovic@pouzenc.fr>2018-06-30 10:43:53 +0200
committerLudovic Pouzenc <ludovic@pouzenc.fr>2018-06-30 10:43:53 +0200
commite247526ba388ce3def4f83ad8fb26852082bb7dd (patch)
tree335d0bd2797542462a3074e0c524a41a45e0257b /appli_3_alpha_old/ical.php
parent679551b7b545a72d376d9e60a8f3da66e44a6855 (diff)
download2007-AWOR-e247526ba388ce3def4f83ad8fb26852082bb7dd.tar.gz
2007-AWOR-e247526ba388ce3def4f83ad8fb26852082bb7dd.tar.bz2
2007-AWOR-e247526ba388ce3def4f83ad8fb26852082bb7dd.zip
Version alpha_old3 2007-02-22+15:12:38 - 2007-02-27+20:02:20
Diffstat (limited to 'appli_3_alpha_old/ical.php')
-rw-r--r--appli_3_alpha_old/ical.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/appli_3_alpha_old/ical.php b/appli_3_alpha_old/ical.php
index d2928b4..1b2d455 100644
--- a/appli_3_alpha_old/ical.php
+++ b/appli_3_alpha_old/ical.php
@@ -3,9 +3,9 @@ require_once('include/ludo/session_verify.inc.php');
require_once('include/ical.inc.php');
$res=ERR_ICAL_NO_DATA;
-if ( isset($_SESSION['idP']) )
+if ( isset($_SESSION['session_idP']) )
{
- $res = generationIcal($_SESSION['idP'], $iCal_name, $iCal_content, $errmsg);
+ $res = generationIcal($_SESSION['session_idP'], $iCal_name, $iCal_content, $errmsg);
if ( $res === 0 )
{
@@ -20,7 +20,7 @@ if ( isset($_SESSION['idP']) )
exit();
}
}
-require_once('html_elements.inc.php');
+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);