--- loncom/interface/londocs.pm 2005/08/31 06:36:41 1.204 +++ 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.204 2005/08/31 06:36:41 raeburn 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;