7.3.12 release

This commit is contained in:
Roy Johnson 2007-03-14 15:31:23 +00:00
parent 98331a137e
commit 9c3fb513c4
3 changed files with 8 additions and 7 deletions

View file

@ -48,6 +48,7 @@
- fix: Deploy package with calendar
- fix: Mis-spelled argument to getLineage in Calendar, Clipboard and upgrade
scripts (Thanks to Matthew Wilson, Veradox)
- Added additional file types to export - bmp,fla,flv,mp3,js,swf
7.3.11
- Added an option for enabling coverage tests to testCodebase.pl.

File diff suppressed because one or more lines are too long

View file

@ -251,7 +251,7 @@ sub _translateUrlToPath {
my ($path,$name) = $url =~ m{(?:(.*) /)? ([^/]+) $}x; # NOTE: Might be more efficient to use index() and substr()
# If it ends in a known file type handled by apache, use that
if ($name =~ m{[.](?:html|htm|txt|pdf|jpg|css|gif|png|doc|xls|xml|rss)$}) {
if ($name =~ m{[.](?:html|htm|txt|pdf|jpg|css|gif|png|doc|xls|xml|rss|bmp|mp3|js|fla|flv|swf)$}) {
$dataRef->{'path' } = $path;
$dataRef->{'filename' } = $name;
}