From bd39808be836649194383bc2e1c84449feb7090d Mon Sep 17 00:00:00 2001 From: Penny Leach Date: Thu, 19 Nov 2009 06:42:08 +0000 Subject: [PATCH] portfolio MDL-19356 boxnet doesn't support multiple exports at the same time --- portfolio/boxnet/lib.php | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/portfolio/boxnet/lib.php b/portfolio/boxnet/lib.php index 408c7faeeed..f3a08e1e57d 100644 --- a/portfolio/boxnet/lib.php +++ b/portfolio/boxnet/lib.php @@ -247,4 +247,12 @@ class portfolio_plugin_boxnet extends portfolio_plugin_push_base { public static function supported_formats() { return array(PORTFOLIO_FORMAT_FILE); // don't support rich html, it breaks links } + + /* + * for now , boxnet doesn't support this, + * because we can't dynamically construct return urls. + */ + public static function allows_multiple_exports() { + return false; + } }