- تاریخ ثبتنام
- 2020-06-26
- نوشتهها
- 21,417
- راهحلها
- 27
- پسندها
- 3,264
- امتیازها
- 113
- سن
- 27
- محل سکونت
- England
- وب سایت
- xenforo.xyz
XF\Pub\Controller\Editor::actionDialog
is invoked by the front-end XF.EditorHelpers.loadDialog
function which often tags a bb-code tag and then returns a dialog for it.However
actionDialog
uses the regex '/[^a-zA-Z0-9]/'
while a bb-codes use the regex /^[a-z0-9_]*$/i
.This means
_
is stripped from the argument when calling XF\Pub\Controller\Editor::loadDialog
makes matching to the exact bb-code much harder than it should be (as it isn't...