#2153 prevent jquery from attempting to load images that don't exist

v1.18.x
psychobunny 11 years ago
parent 97e4f13a4d
commit 606263ace4

@ -9,6 +9,7 @@ define('forum/admin/footer', ['forum/admin/settings'], function(Settings) {
acpIndex = data;
for (var file in acpIndex) {
if (acpIndex.hasOwnProperty(file)) {
acpIndex[file] = acpIndex[file].replace(/<img/g, '<none'); // can't think of a better solution, see #2153
acpIndex[file] = $('<div class="search-container">' + acpIndex[file] + '</div>');
acpIndex[file].find('ul.nav, script').remove();

Loading…
Cancel
Save