diff options
author | Dan Bornstein <danfuzz@milk.com> | 2016-09-08 09:41:23 -0700 |
---|---|---|
committer | Dan Bornstein <danfuzz@milk.com> | 2016-09-08 09:41:23 -0700 |
commit | 879ae7c67d6b0c7fa78e0e09435861e5509678a8 (patch) | |
tree | 6d0efc6ca65ed08fefe763ce7b65d52bf7857f5d /src/node/handler/ExportHandler.js | |
parent | 6d7f128b870cc405151e44484a35999a0cbb69b0 (diff) | |
download | etherpad-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.js | 2 |
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; |