ENXF NET
Administrator
Staff member
Administrator
Moderator
+Lifetime VIP+
S.V.I.P.S Member
S.V.I.P Member
V.I.P Member
Collaborate
Registered
- Joined
- Nov 13, 2018
- Messages
- 24,724
- Points
- 823
Reputation:
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...Read more
Continue reading...