diff options
author | proller <proller@github.com> | 2013-08-04 23:45:03 +0400 |
---|---|---|
committer | proller <proller@github.com> | 2013-08-04 23:46:03 +0400 |
commit | 0b0919e81c3365c2564a17f06d75a5fa314cf786 (patch) | |
tree | ccdcf8829c020a42412aaae5f5fa261aadc6ac40 | |
parent | 714a8cef38ed46ddd6ef7c2689c93db2704969eb (diff) | |
download | minetest-0b0919e81c3365c2564a17f06d75a5fa314cf786.tar.gz minetest-0b0919e81c3365c2564a17f06d75a5fa314cf786.tar.bz2 minetest-0b0919e81c3365c2564a17f06d75a5fa314cf786.zip |
Masterserver bugfix
-rw-r--r-- | util/master/list.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/master/list.js b/util/master/list.js index f428a1cd1..1c9547fbd 100644 --- a/util/master/list.js +++ b/util/master/list.js @@ -53,7 +53,7 @@ function success(r) { if (s.mods && jQuery.isArray(s.mods)) { mods = s.mods.length; } - h += '<td class="mts_version' + (mods ? ' mts_ismods' : '') + '">' + e(s.version) + ' ' + e(s.gameid) ' ' + e(s.mapgen); + h += '<td class="mts_version' + (mods ? ' mts_ismods' : '') + '">' + e(s.version) + ' ' + e(s.gameid) + ' ' + e(s.mapgen); if (mods) { h += '<div class="mts_mods">Mods ('+mods+'):<br/>'; for (m in s.mods) { |