summaryrefslogtreecommitdiff
path: root/src/node/handler/ExportHandler.js
diff options
context:
space:
mode:
authorDan Bornstein <danfuzz@milk.com>2016-09-08 09:41:23 -0700
committerDan Bornstein <danfuzz@milk.com>2016-09-08 09:41:23 -0700
commit879ae7c67d6b0c7fa78e0e09435861e5509678a8 (patch)
tree6d0efc6ca65ed08fefe763ce7b65d52bf7857f5d /src/node/handler/ExportHandler.js
parent6d7f128b870cc405151e44484a35999a0cbb69b0 (diff)
downloadetherpad-lite-879ae7c67d6b0c7fa78e0e09435861e5509678a8.zip
Remove the `noDocType` argument, which was only ever passed as `false`.
Diffstat (limited to 'src/node/handler/ExportHandler.js')
-rw-r--r--src/node/handler/ExportHandler.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/node/handler/ExportHandler.js b/src/node/handler/ExportHandler.js
index 8f91ced2..7cce6200 100644
--- a/src/node/handler/ExportHandler.js
+++ b/src/node/handler/ExportHandler.js
@@ -92,7 +92,7 @@ exports.doExport = function(req, res, padId, type)
//render the html document
function(callback)
{
- exporthtml.getPadHTMLDocument(padId, req.params.rev, false, function(err, _html)
+ exporthtml.getPadHTMLDocument(padId, req.params.rev, function(err, _html)
{
if(ERR(err, callback)) return;
html = _html;