Skip to content

Commit

Permalink
Merge upstream
Browse files Browse the repository at this point in the history
  • Loading branch information
SirensOfTitan committed Aug 3, 2012
1 parent 1dc979a commit 86c77be
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/express_validator.js
Expand Up @@ -148,7 +148,7 @@ var expressValidator = function(req, res, next) {

req.filter = function(param) {
var self = this;
var currentValue = this.getArrayParam(param);
var currentValue = _getArrayParam(param);
var filter = new Filter();
filter.modify = function(str) {
this.str = str;
Expand All @@ -166,4 +166,4 @@ var expressValidator = function(req, res, next) {
};
module.exports = expressValidator;
module.exports.Validator = Validator;
module.exports.Filter = Filter;
module.exports.Filter = Filter;

0 comments on commit 86c77be

Please sign in to comment.