diff options
author | Jörn Friedrich Dreyer <jfd@butonic.de> | 2013-02-07 17:42:03 +0100 |
---|---|---|
committer | Jörn Friedrich Dreyer <jfd@butonic.de> | 2013-02-07 17:46:16 +0100 |
commit | 1ef3e4c5c66b9b261952ac780bbc1cd69f5fe404 (patch) | |
tree | 47147fa756e15e1feb5cff56b04db878d146727c /lib/helper.php | |
parent | 6cff5418a75775b9cb2f8c877797b469d5cd3ce9 (diff) | |
download | nextcloud-server-1ef3e4c5c66b9b261952ac780bbc1cd69f5fe404.tar.gz nextcloud-server-1ef3e4c5c66b9b261952ac780bbc1cd69f5fe404.zip |
simplyfy mimetype parsing of 'file' output
Diffstat (limited to 'lib/helper.php')
-rw-r--r-- | lib/helper.php | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/lib/helper.php b/lib/helper.php index 0e549d006a1..a0fbdd10394 100644 --- a/lib/helper.php +++ b/lib/helper.php @@ -394,13 +394,12 @@ class OC_Helper { // it looks like we have a 'file' command, // lets see if it does have mime support $path=escapeshellarg($path); - $fp = popen("file -i -b $path 2>/dev/null", "r"); + $fp = popen("file -b --mime-type $path 2>/dev/null", "r"); $reply = fgets($fp); pclose($fp); - // we have smth like 'text/x-c++; charset=us-ascii\n' - // and need to eliminate everything starting with semicolon including trailing LF - $mimeType = preg_replace('/;.*/ms', '', trim($reply)); + //trim the newline + $mimeType = trim($reply); } return $mimeType; |