Revert "Coding convention applied - part 1"
[friendica.git/.git] / include / attach.php
index 3232f3e..6b26b1e 100644 (file)
@@ -1061,7 +1061,7 @@ function z_mime_content_type($filename) {
        );
 
        $dot = strpos($filename,'.');
-       if ($dot !== false) {
+       if($dot !== false) {
                $ext = strtolower(substr($filename,$dot+1));
                if (array_key_exists($ext, $mime_types)) {
                        return $mime_types[$ext];