summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--includes/ical_export.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/includes/ical_export.php b/includes/ical_export.php
index fa963bc..637bb58 100644
--- a/includes/ical_export.php
+++ b/includes/ical_export.php
@@ -17,6 +17,7 @@ if ( ! class_exists( "GiglogAdmin_IcalExport" ) )
$concert = GiglogAdmin_Concert::get($evid);
$cfullname = $concert->cname().' live at '. $concert->venue()->name() .', '.$concert->venue()->city();
+ $cshortname=substr($cfullname,0,20);
$fdate = strtotime($concert->cdate());
$newformat = date('Ymd',$fdate);
// create a new calendar
@@ -68,6 +69,7 @@ if ( ! class_exists( "GiglogAdmin_IcalExport" ) )
->createCalendar();
header( 'Content-Type: text/calendar' );
+ header( 'content-disposition: attachment;filename='.$cshortname.'.ics');
echo $vcalendarString;
die();
}