diff options
author | Thomas Bruederli <thomas@roundcube.net> | 2014-04-08 19:12:12 +0200 |
---|---|---|
committer | Thomas Bruederli <thomas@roundcube.net> | 2014-04-08 19:12:12 +0200 |
commit | b08306ec1fe1a8e444a87cdb1a0304042ba0f7d4 (patch) | |
tree | c37db092bc8cf00e6ebc7cf78d1687ab2dab71e1 /plugins | |
parent | 188247894f6aff3a11f68bbdf94626b8bf58b852 (diff) |
Disable time limit for folder download requests
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/zipdownload/zipdownload.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/plugins/zipdownload/zipdownload.php b/plugins/zipdownload/zipdownload.php index 32ff1b88b..029eecfb8 100644 --- a/plugins/zipdownload/zipdownload.php +++ b/plugins/zipdownload/zipdownload.php @@ -169,6 +169,8 @@ class zipdownload extends rcube_plugin */ public function download_folder() { + @set_time_limit(0); + $imap = rcmail::get_instance()->get_storage(); $mbox_name = $imap->get_folder(); |