Migrate old MOTDs and don't replace \n with <br> after
This commit is contained in:
parent
56d6eb8026
commit
80c4c90bcf
5 changed files with 17 additions and 27 deletions
|
|
@ -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();
|
||||
|
|
|
|||
|
|
@ -19,7 +19,6 @@ var CHANNEL = {
|
|||
css: "",
|
||||
js: "",
|
||||
motd: "",
|
||||
motd_text: "",
|
||||
name: false,
|
||||
usercount: 0,
|
||||
emotes: []
|
||||
|
|
|
|||
|
|
@ -900,7 +900,7 @@ function handleModPermissions() {
|
|||
})();
|
||||
$("#cs-csstext").val(CHANNEL.css);
|
||||
$("#cs-jstext").val(CHANNEL.js);
|
||||
$("#cs-motdtext").val(CHANNEL.motd_text);
|
||||
$("#cs-motdtext").val(CHANNEL.motd);
|
||||
setParentVisible("a[href='#cs-motdeditor']", hasPermission("motdedit"));
|
||||
setParentVisible("a[href='#cs-permedit']", CLIENT.rank >= 3);
|
||||
setParentVisible("a[href='#cs-banlist']", hasPermission("ban"));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue