From b3528c314a3a9b8ea387fa178cad12d15b317384 Mon Sep 17 00:00:00 2001 From: ken restivo Date: Tue, 27 Oct 2015 19:48:14 -0700 Subject: Support files with names like foo.0.1.3.ogg --- include/attach.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/attach.php b/include/attach.php index a959a5bcb..1bba88c63 100644 --- a/include/attach.php +++ b/include/attach.php @@ -108,9 +108,9 @@ function z_mime_content_type($filename) { 'oth' => 'application/vnd.oasis.opendocument.text-web' ); - $dot = strpos($filename, '.'); - if ($dot !== false) { - $ext = strtolower(substr($filename, $dot + 1)); + $last_dot = strrpos($filename, '.'); + if ($last_dot !== false) { + $ext = strtolower(substr($filename, $last_dot + 1)); if (array_key_exists($ext, $mime_types)) { return $mime_types[$ext]; } -- cgit v1.2.3 From 8083a8658134654e9ad40f58ecd7ff9d0fb12161 Mon Sep 17 00:00:00 2001 From: ken restivo Date: Tue, 27 Oct 2015 19:53:27 -0700 Subject: Add rudimentary unit test for z_mime_content_type. --- tests/upload_test.php | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 tests/upload_test.php diff --git a/tests/upload_test.php b/tests/upload_test.php new file mode 100644 index 000000000..031315fba --- /dev/null +++ b/tests/upload_test.php @@ -0,0 +1,29 @@ +assertEquals("audio/ogg", z_mime_content_type($multidots)); + $this->assertNotEquals("application/octet-stream", z_mime_content_type($multidots)); + } + + public function testFileNameOneDot() { + $multidots = "foo.ogg"; + $this->assertEquals("audio/ogg", z_mime_content_type($multidots)); + $this->assertNotEquals("application/octet-stream", z_mime_content_type($multidots)); + } +} \ No newline at end of file -- cgit v1.2.3 From 714832bb498fb5e3b295e3c4aefe93ba035de23d Mon Sep 17 00:00:00 2001 From: ken restivo Date: Tue, 27 Oct 2015 20:15:58 -0700 Subject: Add status monitor widget from Travis. --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index bd95cd674..b6750480e 100644 --- a/README.md +++ b/README.md @@ -6,6 +6,7 @@ Hubzilla - Community Server Help us redefine the web - using integrated and united community websites. -------------------------------------------------------------------------- +[![Build Status](https://travis-ci.org/redmatrix/hubzilla.svg)](https://travis-ci.org/redmatrix/hubzilla) **What are Hubs?** -- cgit v1.2.3