From 9d4e5f5e493e76f51ba3f6ea824b6deb574c1494 Mon Sep 17 00:00:00 2001
From: Aleksander Machniak <alec@alec.pl>
Date: Sun, 06 Mar 2016 10:24:35 -0500
Subject: [PATCH] Bump zipdownload plugin version number
---
plugins/zipdownload/composer.json | 2 +-
plugins/zipdownload/zipdownload.js | 2 +-
plugins/zipdownload/zipdownload.php | 4 ++--
3 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/plugins/zipdownload/composer.json b/plugins/zipdownload/composer.json
index bc171d8..2d772e5 100644
--- a/plugins/zipdownload/composer.json
+++ b/plugins/zipdownload/composer.json
@@ -3,7 +3,7 @@
"type": "roundcube-plugin",
"description": "Adds an option to download all attachments to a message in one zip file, when a message has multiple attachments. Also allows the download of a selection of messages in one zip file. Supports mbox and maildir format.",
"license": "GPLv3+",
- "version": "3.0",
+ "version": "3.1",
"authors": [
{
"name": "Thomas Bruederli",
diff --git a/plugins/zipdownload/zipdownload.js b/plugins/zipdownload/zipdownload.js
index 6f918d2..5c184be 100644
--- a/plugins/zipdownload/zipdownload.js
+++ b/plugins/zipdownload/zipdownload.js
@@ -46,7 +46,7 @@
span.text(rcmail.get_label('zipdownload.download'));
rcmail.env.download_link = link;
});
- });
+});
function rcmail_zipdownload(mode)
diff --git a/plugins/zipdownload/zipdownload.php b/plugins/zipdownload/zipdownload.php
index 241de54..67c2579 100644
--- a/plugins/zipdownload/zipdownload.php
+++ b/plugins/zipdownload/zipdownload.php
@@ -6,7 +6,7 @@
* Plugin to allow the download of all message attachments in one zip file
* and downloading of many messages in one go.
*
- * @version 3.0
+ * @version 3.1
* @requires php_zip extension (including ZipArchive class)
* @author Philip Weir
* @author Thomas Bruderli
@@ -119,7 +119,7 @@
*/
public function download_attachments()
{
- $rcmail = rcmail::get_instance();
+ $rcmail = rcmail::get_instance();
// require CSRF protected request
$rcmail->request_security_check(rcube_utils::INPUT_GET);
--
Gitblit v1.9.1