From 12e93ca2b04ec1eef6fee26e6a9155013f2a099d Mon Sep 17 00:00:00 2001
From: Thomas Bruederli <thomas@roundcube.net>
Date: Fri, 22 Nov 2013 03:06:35 -0500
Subject: [PATCH] Optimize and preload message icons
---
plugins/filesystem_attachments/filesystem_attachments.php | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/plugins/filesystem_attachments/filesystem_attachments.php b/plugins/filesystem_attachments/filesystem_attachments.php
index 063f6d5..8d995ca 100644
--- a/plugins/filesystem_attachments/filesystem_attachments.php
+++ b/plugins/filesystem_attachments/filesystem_attachments.php
@@ -13,6 +13,7 @@
* require_once('plugins/filesystem_attachments/filesystem_attachments.php');
* class myCustom_attachments extends filesystem_attachments
*
+ * @license GNU GPLv3+
* @author Ziba Scott <ziba@umich.edu>
* @author Thomas Bruederli <roundcube@gmail.com>
*
@@ -60,7 +61,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;
--
Gitblit v1.9.1