Migrate old MOTDs and don't replace \n with <br> after

This commit is contained in:
calzoneman 2015-01-08 20:06:41 -06:00
parent 56d6eb8026
commit 80c4c90bcf
5 changed files with 17 additions and 27 deletions

View file

@ -175,11 +175,10 @@ Callbacks = {
}
},
setMotd: function(data) {
CHANNEL.motd = data.html;
CHANNEL.motd_text = data.motd;
$("#motd").html(CHANNEL.motd);
$("#cs-motdtext").val(CHANNEL.motd_text);
setMotd: function(motd) {
CHANNEL.motd = motd;
$("#motd").html(motd);
$("#cs-motdtext").val(motd);
if (data.motd != "") {
$("#motdwrap").show();
$("#motd").show();