mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-04-21 16:06:16 -04:00
update for express 4.x
This commit is contained in:
parent
7b86eb09bc
commit
d0b39c01fb
8 changed files with 25 additions and 24 deletions
|
@ -103,7 +103,7 @@ exports.doExport = function(req, res, padId, type)
|
|||
//send the file
|
||||
function(callback)
|
||||
{
|
||||
res.sendfile(destFile, null, callback);
|
||||
res.sendFile(destFile, null, callback);
|
||||
},
|
||||
//clean up temporary files
|
||||
function(callback)
|
||||
|
@ -184,7 +184,7 @@ exports.doExport = function(req, res, padId, type)
|
|||
//send the file
|
||||
function(callback)
|
||||
{
|
||||
res.sendfile(destFile, null, callback);
|
||||
res.sendFile(destFile, null, callback);
|
||||
},
|
||||
//clean up temporary files
|
||||
function(callback)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue