Thomas Bruederli
2013-04-11 82899235523b7ad74180086b7910428248387057
Fix ticket reference
2 files modified
4 ■■■■ changed files
CHANGELOG 2 ●●● patch | view | raw | blame | history
plugins/filesystem_attachments/filesystem_attachments.php 2 ●●● patch | view | raw | blame | history
CHANGELOG
@@ -1,7 +1,7 @@
CHANGELOG Roundcube Webmail
===========================
- Set minimal permissions to temp files (#148899)
- Set minimal permissions to temp files (#1488996)
- Improve content check for embedded images without filename (#1489029)
- Fix handling of invalid characters in message headers and output (#1489032)
- Avoid race-conditions with concurrent attachment uploads (#1488422)
plugins/filesystem_attachments/filesystem_attachments.php
@@ -60,7 +60,7 @@
            $args['id'] = $this->file_id();
            $args['path'] = $tmpfname;
            $args['status'] = true;
            @chmod($tmpfname, 0600);  // set correct permissions (#148899)
            @chmod($tmpfname, 0600);  // set correct permissions (#1488996)
            // Note the file for later cleanup
            $_SESSION['plugins']['filesystem_attachments'][$group][] = $tmpfname;