--- loncom/interface/londocs.pm 2005/08/24 21:08:14 1.201 +++ loncom/interface/londocs.pm 2005/09/01 23:20:05 1.205 @@ -1,7 +1,7 @@ # The LearningOnline Network # Documents # -# $Id: londocs.pm,v 1.201 2005/08/24 21:08:14 albertel Exp $ +# $Id: londocs.pm,v 1.205 2005/09/01 23:20:05 albertel Exp $ # # Copyright Michigan State University Board of Trustees # @@ -155,9 +155,7 @@ sub dumpcourse { my ($ca,$cd)=split(/\@/,$env{'form.authorspace'}); $r->print('

'.&mt('Copying Files').'

'); my $title=$env{'form.authorfolder'}; - my ($ext)=($title=~s/\.(\w+)$//); $title=&clean($title); - $title.='.'.$ext; my %replacehash=(); foreach (keys %env) { if ($_=~/^form\.namefor\_(.+)/) { @@ -168,7 +166,10 @@ sub dumpcourse { $crs=~s/\_/\//g; foreach (keys %replacehash) { my $newfilename=$title.'/'.$replacehash{$_}; + $newfilename=~s/\.(\w+)$//; + my $ext=$1; $newfilename=&clean($newfilename); + $newfilename.='.'.$ext; my @dirs=split(/\//,$newfilename); my $path='/home/'.$ca.'/public_html'; my $makepath=$path; @@ -254,7 +255,7 @@ sub exportbutton { return ''. ''. - &Apache::loncommon::help_open_topic('Docs_Export_Course_Docs'); + &Apache::loncommon::help_open_topic('Docs_Export_Course_Docs'); } sub exportcourse {