Changeset 18282 for gsdl/trunk/bin


Ignore:
Timestamp:
2008-12-19T13:48:37+13:00 (15 years ago)
Author:
ak19
Message:

Spaces in filenames are replaced with underscores just to be on the safe side. Tested that files with spaces in their names still work when using the Remote GS server and also work in the local case (such as mp3 and wmv files).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • gsdl/trunk/bin/script/gsConvert.pl

    r18202 r18282  
    735735    my ($pre, $text, $post) = @_;
    736736
    737     $text =~ s/%20/ /g; # reinstated this line, since we no longer replace spaces with %20
     737    $text =~ s/%20/_/g; # reinstated this line, since we no longer replace spaces with %20. We replace them with underscores
    738738    $text =~ s/\\/\//g;
    739739    $text =~ s/%/%25/g;
Note: See TracChangeset for help on using the changeset viewer.