Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/roundcube/roundcubemail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2022-10-09 12:35:14 +0300
committerAleksander Machniak <alec@alec.pl>2022-10-09 12:35:14 +0300
commit80404a8674da49e249c316a30932bed4a82e2dac (patch)
treefc181fd14d462deed8064a5b441deb23b256c2c0 /program/include/rcmail.php
parente9ce8dc63d403f5c720615e5ac33554727fc8886 (diff)
Store uploads metadata in a separate sql database table instead of a session (#8415)
Diffstat (limited to 'program/include/rcmail.php')
-rw-r--r--program/include/rcmail.php14
1 files changed, 2 insertions, 12 deletions
diff --git a/program/include/rcmail.php b/program/include/rcmail.php
index f2ec6358b..bb13cdc73 100644
--- a/program/include/rcmail.php
+++ b/program/include/rcmail.php
@@ -28,6 +28,8 @@
*/
class rcmail extends rcube
{
+ use rcube_uploads;
+
/**
* Main tasks.
*
@@ -1870,18 +1872,6 @@ class rcmail extends rcube
}
/**
- * Outputs uploaded file content (with image thumbnails support
- *
- * @param array $file Upload file data
- *
- * @deprecated since 1.5-beta, use rcmail_action::display_uploaded_file()
- */
- public function display_uploaded_file($file)
- {
- rcmail_action::display_uploaded_file($file);
- }
-
- /**
* Initializes client-side autocompletion.
*
* @deprecated since 1.5-beta, use rcmail_action::autocomplete_init()