mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-07-04 19:08:55 -05:00
Fixed FastRestart invalid dvar exception
Fixed decodeURI issue in messageboard Removed debug message in stats plugin
This commit is contained in:
@ -52,9 +52,9 @@ $.getJSON("_thread?id=" + parseGet('id'), function(Response) {
|
||||
$('#textNav').append('<a class="themeBlue" href="category?id=' + Response.Thread.threadCategory.id + '">' + Response.Thread.threadCategory.title + '</a> » ' + decodeURIComponent(Response.Thread.title));
|
||||
$('.threadStart .userTitle').html(Response.Thread.author.username);
|
||||
$('.threadStart .timePosted').html(getDate(Response.Thread.creationDate));
|
||||
$('.threadStart .threadTitle').html(decodeURIComponent(Response.Thread.title));
|
||||
$('.threadStart .threadTitle').html(Response.Thread.title);
|
||||
$('.threadStart a.userProfileLink').attr("href", "user?id=" + Response.Thread.author.id);
|
||||
$('.threadStart .threadContent').html(decodeURIComponent(Response.Thread.formattedContent));
|
||||
$('.threadStart .threadContent').html(Response.Thread.formattedContent);
|
||||
if (Response.Thread.author.avatarURL != "")
|
||||
$('.threadStart .userAvatar').html("").attr("style", "background-image:url('" + Response.Thread.author.avatarURL + "');'");
|
||||
$('#replyThreadButton').attr("href", "postthread?threadid=" + Response.Thread.id);
|
||||
|
Reference in New Issue
Block a user