Add attachment icon for movie files

This commit is contained in:
Thomas Casteleyn
2020-09-04 16:12:19 +02:00
committed by Molkobain
parent 6542cf9d30
commit b9f23177e7
2 changed files with 7 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

View File

@@ -437,6 +437,13 @@ class AttachmentPlugIn implements iApplicationUIExtension, iApplicationObjectExt
$sIcon = 'zip.png';
break;
case 'avi':
case 'mp4':
case 'mpeg':
case 'mpg':
$sIcon = 'movie.png';
break;
default:
$sIcon = 'document.png';
break;