diff options
author | Dan Bornstein <danfuzz@milk.com> | 2016-09-08 09:46:13 -0700 |
---|---|---|
committer | Dan Bornstein <danfuzz@milk.com> | 2016-09-08 09:46:13 -0700 |
commit | a0403ffc22da6e94c88f89ea0ff0d65704947415 (patch) | |
tree | 1fec2327b93b3ecc26c403ced54a2037f5676290 /src/node/handler/ExportHandler.js | |
parent | 879ae7c67d6b0c7fa78e0e09435861e5509678a8 (diff) | |
download | etherpad-lite-a0403ffc22da6e94c88f89ea0ff0d65704947415.zip |
Remove unused parameter `noDocType`.
My editor also auto-stripped some EOL whitespace.
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 7cce6200..fe7ab3db 100644 --- a/src/node/handler/ExportHandler.js +++ b/src/node/handler/ExportHandler.js @@ -76,7 +76,7 @@ exports.doExport = function(req, res, padId, type) } else if(type == "txt") { - exporttxt.getPadTXTDocument(padId, req.params.rev, false, function(err, txt) + exporttxt.getPadTXTDocument(padId, req.params.rev, function(err, txt) { if(ERR(err)) return; res.send(txt); |