diff --git a/migrations/20131117_fix_task_types.js b/migrations/20131117_fix_task_types.js
new file mode 100644
index 0000000000..14d86cb55f
--- /dev/null
+++ b/migrations/20131117_fix_task_types.js
@@ -0,0 +1,18 @@
+// TODO figure out why this is happening in the first place
+
+db.users.find({},{habits:1, dailys:1, todos:1, rewards:1}).forEach(function(user){
+ _.each(user.habits, function(task){
+ task.type = 'habit';
+ })
+ _.each(user.dailys, function(task){
+ task.type = 'daily';
+ })
+ _.each(user.todos, function(task){
+ task.type = 'todo';
+ })
+ _.each(user.rewards, function(task){
+ task.type = 'reward';
+ })
+
+ db.users.update({_id:user._id}, {$set:{habits: user.habits, dailys: user.dailys, todos: user.todos, rewards: user.rewards}});
+});
diff --git a/public/css/customizer.styl b/public/css/customizer.styl
index fd9391fa9d..021048869c 100644
--- a/public/css/customizer.styl
+++ b/public/css/customizer.styl
@@ -22,7 +22,7 @@ menu
line-height: 2
.customize-option
- border: 1px solid grey;
+ border: 0px solid grey;
background-color: hsl(0, 0%, 93%);
margin-bottom: 10px
diff --git a/views/options/social/tavern.jade b/views/options/social/tavern.jade
index 0fad9b0fe0..eded297e3a 100644
--- a/views/options/social/tavern.jade
+++ b/views/options/social/tavern.jade
@@ -47,10 +47,12 @@
// Player Tiers
.modal(style='position: relative;top: auto;left: auto;right: auto;margin: 0 auto 20px;z-index: 1;max-width: 100%;')
.modal-header
- h3 Player Tier Legend
+ h3 Player Tiers
.modal-body
small.
- Click labels to expand. See contribution details.
+ Click tier labels below for more information.
+ Learn more about contributor rewards
+ Learn how to contribute to HabitRPG
table.table.table-striped
tr
td