From ccb5da9d6e27e32a79a5671f873e4ed2d237e8fd Mon Sep 17 00:00:00 2001 From: Rj48 Date: Thu, 27 Oct 2016 23:31:46 +0200 Subject: [PATCH] trim long extensions --- index.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/index.php b/index.php index 1906dab..f3e5089 100755 --- a/index.php +++ b/index.php @@ -140,6 +140,7 @@ function storeFile($name, $tmpFile, $formatted = false) } } +//extract extension from a path (does not include the dot) function getExtension($path) { $ext = pathinfo($path, PATHINFO_EXTENSION); @@ -149,6 +150,8 @@ function getExtension($path) { $ext = $ext2.'.'.$ext; } + //trim extension to max. 7 chars + $ext = substr($ext,0,7); return $ext; }