summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/node/handler/ExportHandler.js8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/node/handler/ExportHandler.js b/src/node/handler/ExportHandler.js
index 0a0e51f1..0654deb4 100644
--- a/src/node/handler/ExportHandler.js
+++ b/src/node/handler/ExportHandler.js
@@ -158,8 +158,12 @@ exports.doExport = function(req, res, padId, type)
//if this is a html export, we can send this from here directly
if(type == "html")
{
- res.send(html);
- callback("stop");
+ // do any final changes the plugin might want to make cake
+ hooks.aCallFirst("exportHTMLSend", html, function(err, newHTML){
+ if(newHTML.length) html = newHTML;
+ res.send(html);
+ callback("stop");
+ });
}
else //write the html export to a file
{