Comparing version 0.2.5 to 0.2.6
@@ -6,3 +6,3 @@ { | ||
"keywords": ["framework", "api", "web", "mvc", "extensible", "micro", "connect"], | ||
"version": "0.2.5", | ||
"version": "0.2.6", | ||
"homepage": "http://github.com/antz29/node-base", | ||
@@ -9,0 +9,0 @@ "repository": { |
@@ -91,3 +91,3 @@ module.exports = (function() { | ||
var tdata = {}; | ||
var tdata = req.template || {}; | ||
@@ -132,3 +132,3 @@ async.series({ | ||
controller_action(req,res,function(td) { | ||
tdata = td; | ||
tdata = _.extend(tdata, td); | ||
callback(null); | ||
@@ -135,0 +135,0 @@ process.nextTick(callPostAction); |
9739