From 976744480f945cc32b085fd05720a16f6537b9e3 Mon Sep 17 00:00:00 2001 From: Baris Soner Usakli Date: Wed, 5 Mar 2014 14:52:32 -0500 Subject: [PATCH] post summary change --- public/templates/account.tpl | 4 ++-- public/templates/accountposts.tpl | 6 +++--- public/templates/favourites.tpl | 8 ++++---- public/templates/search.tpl | 10 +++++----- src/posts.js | 8 +++----- 5 files changed, 17 insertions(+), 19 deletions(-) diff --git a/public/templates/account.tpl b/public/templates/account.tpl index 7b660a185d..24fc37573b 100644 --- a/public/templates/account.tpl +++ b/public/templates/account.tpl @@ -140,8 +140,8 @@ [[global:posted]] [[global:in]] - - {posts.categoryName} + + {posts.category.name} diff --git a/public/templates/accountposts.tpl b/public/templates/accountposts.tpl index 710b693ba6..a407030ea3 100644 --- a/public/templates/accountposts.tpl +++ b/public/templates/accountposts.tpl @@ -25,10 +25,10 @@
- [[global:posted]] + [[global:posted]] [[global:in]] - - {posts.categoryName} + + {posts.category.name} diff --git a/public/templates/favourites.tpl b/public/templates/favourites.tpl index 273b88cfc5..e793d0475b 100644 --- a/public/templates/favourites.tpl +++ b/public/templates/favourites.tpl @@ -25,10 +25,10 @@
- posted - in - - {posts.categoryName} + [[global:posted]] + [[global:in]] + + {posts.category.name} diff --git a/public/templates/search.tpl b/public/templates/search.tpl index 393a6d7e04..ceb1082404 100644 --- a/public/templates/search.tpl +++ b/public/templates/search.tpl @@ -61,7 +61,7 @@
- + {posts.content} @@ -71,10 +71,10 @@ - posted - in - - {posts.categoryName} + [[global:posted]] + [[global:in]] + + {posts.category.name} diff --git a/src/posts.js b/src/posts.js index ac4a3d5e5a..812f60f78e 100644 --- a/src/posts.js +++ b/src/posts.js @@ -281,11 +281,9 @@ var db = require('./database'), return callback(null); } categories.getCategoryFields(topicData.cid, ['name', 'icon', 'slug'], function(err, categoryData) { - postData.categoryName = categoryData.name; - postData.categoryIcon = categoryData.icon; - postData.categorySlug = categoryData.slug; - postData.title = validator.escape(topicData.title); - postData.topicSlug = topicData.slug; + postData.category = categoryData; + topicData.title = validator.escape(topicData.title); + postData.topic = topicData; next(null, postData); }); });