RT# 82949 - changes section name from fees to pricing, better opiton
[freeside.git] / httemplate / view / kml.cgi
index 47435c7..a156edc 100644 (file)
@@ -1,13 +1,11 @@
 <% $kml->archive %>\
 <%init>
 
-my ($latitude, $longitude, $name) = @_;
-#would be nice to pass in customer or prospect name too...
-
 my $kml = Geo::GoogleEarth::Pluggable->new;
 $kml->Point( map { $_=>scalar($cgi->param($_)) } qw( name lat lon ) );
 
 #http_header('Content-Type' => 'application/vnd.google-earth.kml+xml' ); #kml
 http_header('Content-Type' => 'application/vnd.google-earth.kmz' ); #kmz
-
+( my $name = $cgi->param('name') ) =~ s/[^a-z0-9]/_/gi; #perhaps too restrictive
+http_header('Content-Disposition' => "filename=$name.kmz" );
 </%init>