summaryrefslogtreecommitdiff
path: root/src/node/padaccess.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/node/padaccess.js')
-rw-r--r--src/node/padaccess.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/node/padaccess.js b/src/node/padaccess.js
index a3d1df33..4388ab94 100644
--- a/src/node/padaccess.js
+++ b/src/node/padaccess.js
@@ -15,7 +15,7 @@ module.exports = function (req, res, callback) {
callback();
//no access
} else {
- res.send("403 - Can't touch this", 403);
+ res.send(403, "403 - Can't touch this");
}
});
}