From 00d3f0a893f82de8ab4095dd9d722855aaf87bd2 Mon Sep 17 00:00:00 2001 From: Olav Morken <olav.morken@uninett.no> Date: Mon, 8 Nov 2010 13:54:07 +0000 Subject: [PATCH] module.php: Fix mimetype when filename contains ".". Thanks to Sixto Martin for providing this patch. git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@2623 44740490-163a-0410-bde0-09ae8108e29a --- www/module.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/module.php b/www/module.php index f79c1cbd5..19ccc586e 100644 --- a/www/module.php +++ b/www/module.php @@ -140,7 +140,7 @@ try { /* Find MIME type for file, based on extension. */ $contentType = NULL; - if (preg_match('#\.([^/]+)$#D', $path, $type)) { + if (preg_match('#\.([^/\.]+)$#D', $path, $type)) { $type = strtolower($type[1]); if (array_key_exists($type, $mimeTypes)) { $contentType = $mimeTypes[$type]; -- GitLab