From 0029200a78e19e71f7821fc82571d9bf5a8e55a6 Mon Sep 17 00:00:00 2001 From: Aleksander Machniak Date: Wed, 23 Nov 2016 20:19:03 +0100 Subject: [PATCH] Fix "Warning: Call to deprecated function rcmail_filetype2classname()" --- plugins/kolab_files/lib/kolab_files_engine.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/kolab_files/lib/kolab_files_engine.php b/plugins/kolab_files/lib/kolab_files_engine.php index 1f15ae7e..cae47016 100644 --- a/plugins/kolab_files/lib/kolab_files_engine.php +++ b/plugins/kolab_files/lib/kolab_files_engine.php @@ -1280,7 +1280,7 @@ class kolab_files_engine 'html' => $content, 'name' => $attachment['name'], 'mimetype' => $attachment['mimetype'], - 'classname' => rcmail_filetype2classname($attachment['mimetype'], $attachment['name']), + 'classname' => rcube_utils::file2class($attachment['mimetype'], $attachment['name']), 'complete' => true), $uploadid); } else if ($attachment['error']) {