소스 검색

Show the image inline when the action is not set

This is needed for bulkvs to display the SMS image inline. Otherwise it will offer a download only.
FusionPBX 2 년 전
부모
커밋
4de7ca7d0d
1개의 변경된 파일6개의 추가작업 그리고 1개의 파일을 삭제
  1. 6 1
      message_media.php

+ 6 - 1
message_media.php

@@ -71,6 +71,11 @@
 			case 'zip': $content_type = 'application/zip'; break;
 			case 'zip': $content_type = 'application/zip'; break;
 			default: $content_type = 'application/octet-stream'; break;
 			default: $content_type = 'application/octet-stream'; break;
 		}
 		}
+		
+		//show the image inline when the action is not set
+		if (empty($action) && ($content_type == 'image/jpeg' || $content_type == 'image/png' || $content_type == 'image/gif')) {
+			$action = 'download-inline';
+		}
 
 
 		switch ($action) {
 		switch ($action) {
 			case 'download':
 			case 'download':
@@ -160,4 +165,4 @@
 
 
 	}
 	}
 
 
-?>
+?>