removed the fields again, gitsucks

This commit is contained in:
Baris Soner Usakli
2013-11-28 18:55:10 -05:00
parent dba47e4bef
commit db98b3db55
2 changed files with 1 additions and 13 deletions

View File

@@ -55,14 +55,6 @@ var RDB = require('./redis'),
'editor': '',
'edited': 0,
'deleted': 0
//TODO : write upgrade script to remove these fields from the database -barisu
//'fav_button_class': '',
//'fav_star_class': 'fa-star-o',
//'show_banned': 'hide',
//'relativeTime': new Date(timestamp).toISOString(),
//'post_rep': '0',
//'edited-class': 'none',
//'relativeEditTime': ''
};
RDB.hmset('post:' + pid, postData);
@@ -70,8 +62,6 @@ var RDB = require('./redis'),
postData.favourited = false;
postData.display_moderator_tools = true;
postData.relativeTime = new Date(timestamp).toISOString();
//TODO : remove this once template bug is fixed -barisu (https://github.com/designcreateplay/NodeBB/issues/574)
postData.fav_star_class = 'fa-star-o';
topics.addPostToTopic(tid, pid);
topics.increasePostCount(tid);
@@ -95,7 +85,7 @@ var RDB = require('./redis'),
}
RDB.scard('cid:' + cid + ':active_users', function(err, amount) {
if (amount > 16) {
if (amount > 15) {
RDB.spop('cid:' + cid + ':active_users');
}

View File

@@ -197,8 +197,6 @@ var RDB = require('./redis'),
for (var i = 0; i < postData.length; ++i) {
postData[i].favourited = fav_data[postData[i].pid] === 1;
postData[i].fav_button_class = fav_data[postData[i].pid] ? 'btn-warning' : '';
postData[i].fav_star_class = fav_data[postData[i].pid] ? 'fa-star' : 'fa-star-o';
postData[i].display_moderator_tools = ((current_user != 0) && (postData[i].uid == current_user || privileges.editable));
}