Merge pull request #1920 from ether/allow-err-msg-from-listpadsof-author

allow author manager to use custom error module
This commit is contained in:
John McLear 2013-10-03 06:46:17 -07:00
commit 37586d646e
1 changed files with 2 additions and 1 deletions

View File

@ -22,6 +22,7 @@
var ERR = require("async-stacktrace");
var db = require("./DB").db;
var async = require("async");
var customError = require("../utils/customError");
var randomString = require('ep_etherpad-lite/static/js/pad_utils').randomString;
exports.getColorPalette = function(){
@ -272,4 +273,4 @@ exports.removePad = function (authorID, padID)
db.set("globalAuthor:" + authorID, author);
}
});
}
}