Эх сурвалжийг харах

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 жил өмнө
parent
commit
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;
 			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) {
 			case 'download':
@@ -160,4 +165,4 @@
 
 	}
 
-?>
+?>