Hatanın örneği aşağıdaki gibidir;
Hatalı liste kodu:
Code:
[ul]
[li]undefined[/li]
[/ul]
Code:
[list]
[*]
[/list]
FTP (FileZilla, CuteFTP, vb.) ile
./jscripts/bbcodes_sceditor.js
dosyasını indirin ve kod editörü (VSCode, Atom, Notepad++, vb.) ile dosyayı açın;Bul:
Code:
txtExec: ['[list]\n[*]', '\n[/list]']
Code:
txtExec: function (caller, selected) {
var content = '';
$.each(selected.split(/\r?\n/), function () {
content += (content ? '\n' : '') + '[*]' + this;
});
this.insertText('[list]\n' + content + '\n[/list]');
}
Code:
txtExec: ['[list=1]\n[*]', '\n[/list]']
Code:
txtExec: function (caller, selected) {
var content = '';
$.each(selected.split(/\r?\n/), function () {
content += (content ? '\n' : '') + '[*]' + this;
});
this.insertText('[list=1]\n' + content + '\n[/list]');
}
bbcodes_sceditor.js
dosyası üzerinde değişiklik yaptıktan sonra ./jscripts/
yoluna yüklemeyi unutmayın.Kaynak: https://github.com/mybb/mybb/pull/3849/c...4d314c57c6