Vergleich jscripts/post.js - 1.8.31 - 1.8.32

  Keine Änderungen   Hinzugefügt   Modifiziert   Entfernt
Zeile 215Zeile 215
		if (Post.fileInput.prop('files').length) {
var common = Post.getCommonFiles();
if (common.length) {

		if (Post.fileInput.prop('files').length) {
var common = Post.getCommonFiles();
if (common.length) {

				common = '<ul><li>' + common.join('</li><li>') + '</li></ul>';
MyBB.prompt(lang.update_confirm.replace("{1}", common), {








				var list = document.createElement('ul');

$.map(common, function (val) {
var e = document.createElement('li');
e.textContent = val;
list.append(e);
});

MyBB.prompt(lang.update_confirm.replace("{1}", list.outerHTML), {

					buttons: [
{ title: yes_confirm, value: true },
{ title: no_confirm, value: false }

					buttons: [
{ title: yes_confirm, value: true },
{ title: no_confirm, value: false }