diff options
author | Andreas Gohr <gohr@cosmocode.de> | 2011-12-22 16:19:24 +0100 |
---|---|---|
committer | Andreas Gohr <gohr@cosmocode.de> | 2012-01-17 08:56:40 +0100 |
commit | 489159e3bfa7c10f9f09df81f09a484736ce5c78 (patch) | |
tree | 1b6ea3103037b2bf605c4a6f0965ddfbd6445f65 /lib | |
parent | 4fcd684a8a5eb25a7c51dfcb55838fbfc523858f (diff) | |
download | rpg-489159e3bfa7c10f9f09df81f09a484736ce5c78.tar.gz rpg-489159e3bfa7c10f9f09df81f09a484736ce5c78.tar.bz2 |
don't limit download sizes in plugin manager
Diffstat (limited to 'lib')
-rw-r--r-- | lib/plugins/plugin/classes/ap_download.class.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/plugins/plugin/classes/ap_download.class.php b/lib/plugins/plugin/classes/ap_download.class.php index 6aab4ba3c..b2571f632 100644 --- a/lib/plugins/plugin/classes/ap_download.class.php +++ b/lib/plugins/plugin/classes/ap_download.class.php @@ -59,7 +59,7 @@ class ap_download extends ap_manage { return false; } - if (!$file = io_download($url, "$tmp/", true, $file)) { + if (!$file = io_download($url, "$tmp/", true, $file, 0)) { $this->manager->error = sprintf($this->lang['error_download'],$url)."\n"; } |