summaryrefslogtreecommitdiff
path: root/src/node/handler
diff options
context:
space:
mode:
authorJohn McLear <john@mclear.co.uk>2014-05-12 15:08:32 +0100
committerJohn McLear <john@mclear.co.uk>2014-05-12 15:08:32 +0100
commitd09e66e271cde2c80f9a0bcebdea5d5f286ba7a6 (patch)
tree77ae24da6a76201658f3c756c904d329b36db94a /src/node/handler
parentec6dc4fa0ee785c7d80420ef706af7b87dab3218 (diff)
downloadetherpad-lite-d09e66e271cde2c80f9a0bcebdea5d5f286ba7a6.zip
use call first and update docs
Diffstat (limited to 'src/node/handler')
-rw-r--r--src/node/handler/ExportHandler.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/node/handler/ExportHandler.js b/src/node/handler/ExportHandler.js
index 54b41c46..11d247d6 100644
--- a/src/node/handler/ExportHandler.js
+++ b/src/node/handler/ExportHandler.js
@@ -49,10 +49,10 @@ exports.doExport = function(req, res, padId, type)
var fileName = padId;
// allow fileName to be overwritten by a hook, the type type is kept static for security reasons
- hooks.aCallAll("exportFileName", padId,
+ hooks.aCallFirst("exportFileName", padId,
function(err, hookFileName){
// if fileName is set then set it to the padId, note that fileName is returned as an array.
- if(fileName[0]) fileName = hookFileName;
+ if(hookFileName[0]) fileName = hookFileName[0];
}
);