This commit is contained in:
Matteo Pagliazzi 2015-08-14 15:02:46 +02:00
parent d3c78bb890
commit 289d288f38

View file

@ -102,7 +102,7 @@ dataexport.avatarPage = function(req, res) {
User.findById(req.params.uuid).select('stats profile items achievements preferences backer contributor').exec(function(err, user){
res.render('avatar-static', {
title: user.profile.name,
env: _.defaults({user:user}, res.locals.habitrpg);
env: _.defaults({user:user}, res.locals.habitrpg)
});
})
};