Revert "fixed #91" -- the fix was for an unconfirmed bug

This reverts commit 9155724082.
See #38 for further action
This commit is contained in:
Sandro Santilli 2013-11-29 13:21:21 +01:00
parent 6c104e2aca
commit 385022de80
2 changed files with 0 additions and 4 deletions

View File

@ -424,9 +424,6 @@ module.exports = function(){
// bring all query values onto req.params object
_.extend(req.params, req.query);
// use both api_key and map_key to auth
req.params.map_key = req.params.map_key || req.params.api_key;
// for cartodb, ensure interactivity is cartodb_id or user specified
req.params.interactivity = req.params.interactivity || 'cartodb_id';

View File

@ -77,7 +77,6 @@ suite('req2params', function() {
assert.equal(qo.cache_buster, query.cache_buster)
assert.equal('test', query.api_key)
assert.equal(undefined, query.non_included)
assert.equal(query.map_key, 'test')
done();
});
});