mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-04-22 08:26:16 -04:00
Remove the noDocType
argument, which was only ever passed as false
.
This commit is contained in:
parent
6d7f128b87
commit
879ae7c67d
4 changed files with 5 additions and 6 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue