Fix ticket reference

pull/88/head
Thomas Bruederli 11 years ago
parent a32682f3db
commit 8289923552

@ -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)

@ -60,7 +60,7 @@ class filesystem_attachments extends rcube_plugin
$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;

Loading…
Cancel
Save