diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2008-12-05 07:38:54 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2008-12-05 07:38:54 +0000 |
| commit | 758d9a67c59737789d004ac9bc58df451353bea4 (patch) | |
| tree | d99ef622835df07af7532e9d2d8e305510d4facb /roundcubemail/index.php | |
| parent | b81d8a5300b1b27ef7eb766902311b8c6b0be1b1 (diff) | |
- performance: skip imap connection for attachments actions
- created attachments.inc file for attachment upload, remove and display actions
git-svn-id: https://svn.roundcube.net/trunk@2121 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/index.php')
| -rw-r--r-- | roundcubemail/index.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/roundcubemail/index.php b/roundcubemail/index.php index 74c7c21d8..6f24ef7b6 100644 --- a/roundcubemail/index.php +++ b/roundcubemail/index.php @@ -176,8 +176,9 @@ $action_map = array( 'send' => 'sendmail.inc', 'expunge' => 'folders.inc', 'purge' => 'folders.inc', - 'remove-attachment' => 'compose.inc', - 'display-attachment' => 'compose.inc', + 'remove-attachment' => 'attachments.inc', + 'display-attachment' => 'attachments.inc', + 'upload' => 'attachments.inc', ), 'addressbook' => array( |
