Update of /cvsroot/sandweb/sandweb/lib/SandWeb
In directory usw-pr-cvs1:/tmp/cvs-serv26839/lib/SandWeb
Modified Files:
File.pm
Log Message:
ah, the mime.types stuff wasn't brought up-to-date when nick
fixed that space bug in _do_file_read(). fixed.
Index: File.pm
===================================================================
RCS file: /cvsroot/sandweb/sandweb/lib/SandWeb/File.pm,v
retrieving revision 1.52
retrieving revision 1.53
diff -U2 -r1.52 -r1.53
--- File.pm 7 Mar 2002 08:17:14 -0000 1.52
+++ File.pm 7 Mar 2002 08:37:14 -0000 1.53
@@ -369,5 +369,5 @@
);
- my @mimes = split(/ /, $mime_output);
+ my @mimes = split('\n',$mime_output);
foreach my $entry (@mimes) {
|